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:
authorJakub Warmuz <jakub@warmuz.org>2015-10-05 22:31:05 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-10-05 22:31:05 +0300
commitc3e28fa909e797ae2d235793f022c2f880cb32f6 (patch)
tree347fe95de85e5472ce07179e6fe816e4723bae6f /letsencrypt-nginx/setup.py
parent5d4e1b68cddc0a45e24adbff2d56319b572fec31 (diff)
parent88def4854b05d3634a5cbc2b92d559d5a5c696b4 (diff)
Merge remote-tracking branch 'github/letsencrypt/master' into mock-2.6
Diffstat (limited to 'letsencrypt-nginx/setup.py')
-rw-r--r--letsencrypt-nginx/setup.py31
1 files changed, 28 insertions, 3 deletions
diff --git a/letsencrypt-nginx/setup.py b/letsencrypt-nginx/setup.py
index 3eb70bede..a37b8222b 100644
--- a/letsencrypt-nginx/setup.py
+++ b/letsencrypt-nginx/setup.py
@@ -4,9 +4,11 @@ from setuptools import setup
from setuptools import find_packages
+version = '0.1.0.dev0'
+
install_requires = [
- 'acme',
- 'letsencrypt',
+ 'acme=={0}'.format(version),
+ 'letsencrypt=={0}'.format(version),
'PyOpenSSL',
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
'setuptools', # pkg_resources
@@ -20,12 +22,35 @@ else:
setup(
name='letsencrypt-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.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,
entry_points={
'letsencrypt.plugins': [
'nginx = letsencrypt_nginx.configurator:NginxConfigurator',
],
},
- include_package_data=True,
)