-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 870 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
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'passwordly'
setup(name = 'passwordly',
version = "0.5",
description = """Simple library for generating passwordly passwords""",
author = "Josh Yudaken",
url = "https://github.com/passwordly/passwordly-python",
packages = find_packages(),
download_url = "http://pypi.python.org/pypi/passwordly/",
install_requires=[
"py-bcrypt>=0.2"
],
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
zip_safe = True,
)