certbot/certbot-apache/setup.py

70 lines
2 KiB
Python
Raw Normal View History

import sys
from setuptools import setup
from setuptools import find_packages
2016-04-05 20:55:29 -04:00
version = '0.6.0.dev0'
2016-01-07 13:04:29 -05:00
# Please update tox.ini when modifying dependency version requirements
install_requires = [
'acme=={0}'.format(version),
'certbot=={0}'.format(version),
'python-augeas',
# For pkg_resources. >=1.0 so pip resolves it to a version cryptography
# will tolerate; see #2599:
'setuptools>=1.0',
'zope.component',
'zope.interface',
]
if sys.version_info < (2, 7):
install_requires.append('mock<1.1.0')
else:
install_requires.append('mock')
2015-10-18 09:49:26 -04:00
docs_extras = [
'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
'sphinx_rtd_theme',
]
setup(
name='certbot-apache',
version=version,
2016-04-13 19:36:53 -04:00
description="Apache plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
2016-04-13 19:36:53 -04:00
author="Electronic Frontier Foundation",
author_email='client-dev@letsencrypt.org',
2015-09-26 18:37:50 -04:00
license='Apache License 2.0',
classifiers=[
2015-09-26 19:02:41 -04:00
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
2015-10-31 07:47:25 -04:00
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
packages=find_packages(),
2015-09-27 04:10:39 -04:00
include_package_data=True,
install_requires=install_requires,
2015-10-18 09:49:26 -04:00
extras_require={
'docs': docs_extras,
},
entry_points={
'certbot.plugins': [
'apache = certbot_apache.configurator:ApacheConfigurator',
2015-09-06 05:20:41 -04:00
],
},
test_suite='certbot_apache',
)