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:
Diffstat (limited to 'certbot-compatibility-test/setup.py')
-rw-r--r--certbot-compatibility-test/setup.py17
1 files changed, 4 insertions, 13 deletions
diff --git a/certbot-compatibility-test/setup.py b/certbot-compatibility-test/setup.py
index f519ed422..1dbcefa75 100644
--- a/certbot-compatibility-test/setup.py
+++ b/certbot-compatibility-test/setup.py
@@ -1,10 +1,9 @@
import sys
-from setuptools import setup
from setuptools import find_packages
+from setuptools import setup
-
-version = '0.31.0.dev0'
+version = '1.3.0.dev0'
install_requires = [
'certbot',
@@ -20,11 +19,6 @@ if sys.version_info < (2, 7, 9):
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',
@@ -34,7 +28,7 @@ setup(
author="Certbot Project",
author_email='client-dev@letsencrypt.org',
license='Apache License 2.0',
- python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
@@ -43,10 +37,10 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
],
@@ -54,9 +48,6 @@ setup(
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',