Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@eff.org>2016-04-14 02:45:54 +0300
committerBrad Warren <bmw@eff.org>2016-04-14 02:45:54 +0300
commita43fac3277fbadaea0311e915efa03aa15f94542 (patch)
tree997a61132622056ebd1e379411b16e76553d2500 /certbot-nginx/setup.py
parente3aba30ec48c67120cc536cf2ec9ff922fbe9ae9 (diff)
s/letsencrypt/certbot letsencrypt-nginx tests
Diffstat (limited to 'certbot-nginx/setup.py')
-rw-r--r--certbot-nginx/setup.py69
1 files changed, 69 insertions, 0 deletions
diff --git a/certbot-nginx/setup.py b/certbot-nginx/setup.py
new file mode 100644
index 000000000..4fdfcd858
--- /dev/null
+++ b/certbot-nginx/setup.py
@@ -0,0 +1,69 @@
+import sys
+
+from setuptools import setup
+from setuptools import find_packages
+
+
+version = '0.6.0.dev0'
+
+# Please update tox.ini when modifying dependency version requirements
+install_requires = [
+ 'acme=={0}'.format(version),
+ 'certbot=={0}'.format(version),
+ 'PyOpenSSL',
+ 'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
+ # For pkg_resources. >=1.0 so pip resolves it to a version cryptography
+ # will tolerate; see #2599:
+ 'setuptools>=1.0',
+ 'zope.interface',
+]
+
+if sys.version_info < (2, 7):
+ install_requires.append('mock<1.1.0')
+else:
+ install_requires.append('mock')
+
+docs_extras = [
+ 'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
+ 'sphinx_rtd_theme',
+]
+
+setup(
+ name='certbot-nginx',
+ version=version,
+ description="Nginx plugin for Let's Encrypt client",
+ url='https://github.com/letsencrypt/letsencrypt',
+ author="Let's Encrypt Project",
+ author_email='client-dev@letsencrypt.org',
+ license='Apache License 2.0',
+ classifiers=[
+ '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',
+ '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(),
+ include_package_data=True,
+ install_requires=install_requires,
+ extras_require={
+ 'docs': docs_extras,
+ },
+ entry_points={
+ 'certbot.plugins': [
+ 'nginx = certbot_nginx.configurator:NginxConfigurator',
+ ],
+ },
+ test_suite='certbot_nginx',
+)