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-15 20:37:40 +0300
committerBrad Warren <bmw@eff.org>2016-04-15 20:37:40 +0300
commit910d1a94ca9751dff3d616be30ce2af651c11e09 (patch)
tree77e07c9483d5994064d0ce209f7d78b8b2f911de /letsencrypt-nginx/setup.py
parent0c1e2e33ec7621403b31943bca387dfb67fc1334 (diff)
letsencrypt-nginx shim
Diffstat (limited to 'letsencrypt-nginx/setup.py')
-rw-r--r--letsencrypt-nginx/setup.py59
1 files changed, 59 insertions, 0 deletions
diff --git a/letsencrypt-nginx/setup.py b/letsencrypt-nginx/setup.py
new file mode 100644
index 000000000..b94b7f69f
--- /dev/null
+++ b/letsencrypt-nginx/setup.py
@@ -0,0 +1,59 @@
+import codecs
+import os
+import sys
+
+from setuptools import setup
+from setuptools import find_packages
+
+
+def read_file(filename, encoding='utf8'):
+ """Read unicode from given file."""
+ with codecs.open(filename, encoding=encoding) as fd:
+ return fd.read()
+
+
+here = os.path.abspath(os.path.dirname(__file__))
+readme = read_file(os.path.join(here, 'README.rst'))
+
+
+version = '0.6.0.dev0'
+
+
+# This package is a simple shim around certbot-nginx
+install_requires = [
+ 'certbot-nginx',
+ 'letsencrypt=={0}'.format(version),
+]
+
+
+setup(
+ name='letsencrypt-nginx',
+ version=version,
+ description="Nginx plugin for Let's Encrypt",
+ long_description=readme,
+ url='https://github.com/letsencrypt/letsencrypt',
+ author="Certbot 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,
+)