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:
authorNick Fong <nickfong@users.noreply.github.com>2016-11-09 04:21:49 +0300
committerBrad Warren <bmw@users.noreply.github.com>2016-11-09 04:21:49 +0300
commit469b5fd441cae085e922c8e66815b5094747a7c5 (patch)
tree0499dcc4e7303637829b6fc9bb90b8337daef1fc /letsencrypt-nginx/setup.py
parentdd8772b608d0f21569145e8b502df72d5d73fff1 (diff)
Remove letsencrypt[-apache|-nginx] (#3769)
Diffstat (limited to 'letsencrypt-nginx/setup.py')
-rw-r--r--letsencrypt-nginx/setup.py59
1 files changed, 0 insertions, 59 deletions
diff --git a/letsencrypt-nginx/setup.py b/letsencrypt-nginx/setup.py
deleted file mode 100644
index 25db12a47..000000000
--- a/letsencrypt-nginx/setup.py
+++ /dev/null
@@ -1,59 +0,0 @@
-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.8.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,
-)