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:58:21 +0300
committerBrad Warren <bmw@eff.org>2016-04-14 02:58:21 +0300
commit4fab8751b28147325b63c9f9bd78e021bce18303 (patch)
tree29d849f090ad4a35312cfc90c6f35b049d40930b /certbot-compatibility-test/setup.py
parent3d248d8a60f085bce920e979a4b80067c0cdd8da (diff)
s/letsencrypt/certbot letsencrypt-compatibility-test
Diffstat (limited to 'certbot-compatibility-test/setup.py')
-rw-r--r--certbot-compatibility-test/setup.py64
1 files changed, 64 insertions, 0 deletions
diff --git a/certbot-compatibility-test/setup.py b/certbot-compatibility-test/setup.py
new file mode 100644
index 000000000..a39cd7d35
--- /dev/null
+++ b/certbot-compatibility-test/setup.py
@@ -0,0 +1,64 @@
+import sys
+
+from setuptools import setup
+from setuptools import find_packages
+
+
+version = '0.6.0.dev0'
+
+install_requires = [
+ 'certbot=={0}'.format(version),
+ 'certbot-apache=={0}'.format(version),
+ 'docker-py',
+ 'requests',
+ 'zope.interface',
+]
+
+if sys.version_info < (2, 7):
+ install_requires.append('mock<1.1.0')
+else:
+ install_requires.append('mock')
+
+if sys.version_info < (2, 7, 9):
+ # For secure SSL connexion with Python 2.7 (InsecurePlatformWarning)
+ install_requires.append('ndg-httpsclient')
+ install_requires.append('pyasn1')
+
+docs_extras = [
+ 'repoze.sphinx.autointerface',
+ 'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags
+ 'sphinx_rtd_theme',
+]
+
+setup(
+ name='certbot-compatibility-test',
+ version=version,
+ description="Compatibility tests 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',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Topic :: Internet :: WWW/HTTP',
+ 'Topic :: Security',
+ ],
+
+ packages=find_packages(),
+ include_package_data=True,
+ install_requires=install_requires,
+ extras_require={
+ 'docs': docs_extras,
+ },
+ entry_points={
+ 'console_scripts': [
+ 'certbot-compatibility-test = certbot_compatibility_test.test_driver:main',
+ ],
+ },
+)