from setuptools import setup from setuptools import find_packages version = '0.32.0.dev0' install_requires = [ 'acme', 'coverage', 'cryptography', 'pyopenssl', 'pytest', 'pytest-cov', 'pytest-rerunfailures==4.2', 'pytest-sugar', 'pytest-xdist', 'pyyaml', 'requests', 'six', ] setup( name='certbot-ci', version=version, description="Certbot continuous integration framework", url='https://github.com/certbot/certbot', author="Certbot Project", author_email='client-dev@letsencrypt.org', license='Apache License 2.0', python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', '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', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Security', ], packages=find_packages(), include_package_data=True, install_requires=install_requires, )