forked from usnistgov/PasswordMetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import os
from setuptools import setup
def long_description():
base_dir = os.path.dirname(__file__)
readme_f = open(os.path.join(base_dir, 'README.md'))
try:
readme = readme_f.read()
finally:
readme_f.close()
return readme
setup(
name='password-permute',
version='0.2',
description="Rearrange generated passwords so they're easier to type "
"on a mobile device",
long_description=long_description(),
author='Alex Willmer',
author_email='[email protected]',
py_modules=['password_permute'],
url='https://github.com/moreati/password-permute',
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Security',
],
entry_points={
'console_scripts': [
'password-permute = password_permute:main',
],
},
)