-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
65 lines (60 loc) · 1.93 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
import os
import codecs
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(HERE, *parts), 'rb', 'utf-8') as f:
return f.read()
setup(
version='2.0.0.dev0',
name='txacme',
description='ACME protocol implementation for Twisted',
license='Expat',
url='https://github.com/mithrandi/txacme',
author='Tristan Seligmann',
author_email='[email protected]',
maintainer='Tristan Seligmann',
maintainer_email='[email protected]',
long_description=read('README.rst'),
packages=find_packages(where='src'),
package_dir={'': 'src'},
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 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',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'acme>=1.0.0',
'attrs>=17.4.0',
'eliot>=0.8.0',
'josepy',
'pem>=16.1.0',
'treq>=15.1.0',
'twisted[tls]>=16.2.0',
'txsni',
'pyopenssl>=17.1.0',
],
extras_require={
'libcloud': [
'apache-libcloud',
],
'dev': [
'coverage',
'eliot-tree',
],
},
)