-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·58 lines (50 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
"""Passphrase installer script.
Install with `setup.py install`.
"""
from setuptools import setup
from passphrase.__main__ import __version__ as passphrase_version
def _readme():
with open('README.rst') as rst:
return rst.read()
setup(
name='hc-passphrase',
version=passphrase_version,
description='Generates cryptographically secure passphrases and passwords',
long_description=_readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later '
'(GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security :: Cryptography',
'Topic :: Utilities'
],
platforms=[
'POSIX :: Linux'
],
keywords='cryptography passphrase password security',
url='http://github.com/hackancuba/passphrase-py',
download_url='https://github.com/HacKanCuBa/passphrase-py/archive/'
'v{}.tar.gz'.format(passphrase_version),
author='HacKan',
author_email='[email protected]',
license='GNU GPL 3.0+',
packages=['passphrase'],
python_requires='>=3.5',
install_requires=[
],
test_suite='nose.collector',
tests_require=['nose'],
entry_points={
'console_scripts': ['passphrase=passphrase.__main__:entry_point'],
},
zip_safe=False
)