forked from calellowitz/pyzxcvbn
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 916 Bytes
/
setup.py
File metadata and controls
37 lines (31 loc) · 916 Bytes
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
from setuptools import setup, find_packages
import sys
import pyzxcvbn
sys.path.append("./pyzxcvbn")
sys.path.append('./tests.py')
setup(
name=pyzxcvbn.__title__,
packages=find_packages(),
version=pyzxcvbn.__version__,
author=pyzxcvbn.__author__,
author_email=pyzxcvbn.__author_email__,
short_description="Python version zxcvbn",
long_description="""\
=================
pyzxcvbn
=================
Python version `zxcvbn <https://github.com/dropbox/zxcvbn>`_.
There are the same test scripts (but written in not coffee script but python) as the original repository in order to ensure this library will move in the same way.
Install
-------
::
$ pip install pyzxcvbn
""",
url=pyzxcvbn.__url__,
license=pyzxcvbn.__license__,
classmethod=[
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
],
test_suite='tests.suite'
)