-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (30 loc) · 1.22 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.1.3'
setup(name='pwdhash.py',
version=version,
description='Python Stanford PwdHash implementation',
long_description="""\
Implementation of theft-resistant password generation algorithm known as
Stanford PwdHash (https://www.pwdhash.com/)""",
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: X11 Applications',
'Environment :: MacOS X',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
keywords='pwdhash',
author='Lev Shamardin',
author_email='[email protected]',
url='https://github.com/abbot/pwdhash',
license='BSD',
py_modules=['pwdhash'],
test_suite='tests',
zip_safe=False,
entry_points={ 'console_scripts': [ 'pwdhash = pwdhash:console_main' ] },
)