-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (24 loc) · 913 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-polypasswordhasher',
version='0.1.0',
packages=find_packages(),
zip_safe=False,
author="Justin Cappos",
author_email="[email protected]",
install_requires=[
"pycrypto"
],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
'Topic :: Utilities'],
)