2015-07-15 11:38:30 -04:00
|
|
|
import sys
|
|
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
|
|
|
2018-03-07 13:26:08 -05:00
|
|
|
version = '0.23.0.dev0'
|
2015-09-26 18:27:04 -04:00
|
|
|
|
2016-01-07 13:04:29 -05:00
|
|
|
# Please update tox.ini when modifying dependency version requirements
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires = [
|
|
|
|
|
# load_pem_private/public_key (>=0.6)
|
|
|
|
|
# rsa_recover_prime_factors (>=0.8)
|
2016-01-08 17:02:35 -05:00
|
|
|
'cryptography>=0.8',
|
2017-12-11 14:25:09 -05:00
|
|
|
# formerly known as acme.jose:
|
|
|
|
|
'josepy>=1.0.0',
|
2015-12-17 20:47:15 -05:00
|
|
|
# Connection.set_tlsext_host_name (>=0.13)
|
2017-03-10 13:58:03 -05:00
|
|
|
'mock',
|
2015-12-17 20:47:15 -05:00
|
|
|
'PyOpenSSL>=0.13',
|
2015-09-01 15:57:41 -04:00
|
|
|
'pyrfc3339',
|
2015-07-10 12:34:08 -04:00
|
|
|
'pytz',
|
2017-06-23 12:40:59 -04:00
|
|
|
'requests[security]>=2.4.1', # security extras added in 2.4.1
|
2018-02-23 16:26:11 -05:00
|
|
|
'setuptools',
|
2017-09-05 13:07:32 -04:00
|
|
|
'six>=1.9.0', # needed for python_2_unicode_compatible
|
2015-07-10 12:34:08 -04:00
|
|
|
]
|
|
|
|
|
|
2016-01-10 13:37:41 -05:00
|
|
|
dev_extras = [
|
2017-12-01 13:59:55 -05:00
|
|
|
'pytest',
|
|
|
|
|
'pytest-xdist',
|
2016-01-10 13:37:41 -05:00
|
|
|
'tox',
|
|
|
|
|
]
|
|
|
|
|
|
2015-10-18 09:49:26 -04:00
|
|
|
docs_extras = [
|
|
|
|
|
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
|
|
|
|
|
'sphinx_rtd_theme',
|
|
|
|
|
]
|
|
|
|
|
|
2015-07-11 12:11:09 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
setup(
|
|
|
|
|
name='acme',
|
2015-09-26 18:27:04 -04:00
|
|
|
version=version,
|
2015-10-18 09:50:08 -04:00
|
|
|
description='ACME protocol implementation in Python',
|
2015-09-26 18:49:46 -04:00
|
|
|
url='https://github.com/letsencrypt/letsencrypt',
|
2016-04-14 19:56:02 -04:00
|
|
|
author="Certbot Project",
|
2015-09-26 18:49:46 -04:00
|
|
|
author_email='client-dev@letsencrypt.org',
|
2015-09-26 18:37:50 -04:00
|
|
|
license='Apache License 2.0',
|
2018-02-16 19:20:45 -05:00
|
|
|
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
2015-09-26 19:00:25 -04:00
|
|
|
classifiers=[
|
2015-09-26 19:02:41 -04:00
|
|
|
'Development Status :: 3 - Alpha',
|
2015-09-26 19:00:25 -04:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2015-10-11 12:03:32 -04:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2016-01-09 08:38:12 -05:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-04-28 19:06:45 -04:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2015-09-26 19:00:25 -04:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
'Topic :: Security',
|
|
|
|
|
],
|
2015-09-26 18:49:46 -04:00
|
|
|
|
2015-07-10 12:34:08 -04:00
|
|
|
packages=find_packages(),
|
2015-09-27 04:10:39 -04:00
|
|
|
include_package_data=True,
|
2015-07-10 12:34:08 -04:00
|
|
|
install_requires=install_requires,
|
2015-07-11 12:11:09 -04:00
|
|
|
extras_require={
|
2016-01-10 13:37:41 -05:00
|
|
|
'dev': dev_extras,
|
2015-10-18 09:49:26 -04:00
|
|
|
'docs': docs_extras,
|
2015-07-11 12:11:09 -04:00
|
|
|
},
|
|
|
|
|
test_suite='acme',
|
2015-07-10 12:34:08 -04:00
|
|
|
)
|