forked from ulif/diceware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
84 lines (76 loc) · 2.36 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup_requires = [
'pytest_runner',
]
install_requires = [
'setuptools',
]
tests_require = [
# See tox.ini
'pytest >=2.8.3',
'coverage',
]
docs_require = [
'Sphinx',
'sphinx_rtd_theme',
]
setup(
name="diceware",
version="0.9.7.dev0",
author="Uli Fouquet",
author_email="[email protected]",
description=(
"Passphrases you will remember."),
license="GPL 3.0",
keywords="diceware password passphrase",
url="https://github.com/ulif/diceware/",
py_modules=[],
packages=['diceware', ],
namespace_packages=[],
long_description=read('README.rst') + '\n\n\n' + read('CHANGES.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Topic :: Security :: Cryptography",
(
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)"),
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
include_package_data=True,
zip_safe=False,
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
extras_require=dict(
tests=tests_require,
docs=docs_require,
),
entry_points={
'console_scripts': [
'diceware = diceware:main',
],
'diceware_random_sources': [
'system = diceware.random_sources:SystemRandomSource',
'realdice = diceware.random_sources:RealDiceRandomSource',
# add more sources of randomness here...
],
},
)