-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
75 lines (69 loc) · 2.09 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
import codecs
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
readme = codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
install_requires = [
# We don't use idna directly, but problems with PyPI's solver
# have resulted in broken installations twice now, (when idna 2.6
# was released, and again with 2.7) so as a workaround, we provide
# an explicit upper bound here, before any of the other constraints
# are read.
#
# See:
#
# * https://github.com/zenhack/simp_le/issues/62
# * https://github.com/pypa/pip/issues/988
'idna<2.8',
'acme>=2.0,<3.0',
'cryptography',
# formerly known as acme.jose:
'josepy',
'mock',
'pyOpenSSL',
'pytz',
'six',
]
tests_require = [
'pycodestyle',
'pylint',
]
setuptools.setup(
name='simp_le-client',
author='Ian Denhardt',
author_email='[email protected]',
description="Simple Let's Encrypt Client",
long_description=readme,
license='GPLv3',
url='https://github.com/zenhack/simp_le',
py_modules=['simp_le'],
setup_requires=['setuptools_scm'],
use_scm_version=True,
install_requires=install_requires,
extras_require={
'tests': tests_require,
},
entry_points={
'console_scripts': [
'simp_le = simp_le:main',
],
},
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
)