summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py46
1 files changed, 22 insertions, 24 deletions
diff --git a/setup.py b/setup.py
index 0143764b8..afddbda35 100644
--- a/setup.py
+++ b/setup.py
@@ -44,9 +44,9 @@ tests_require = [
docs_extras = [
- 'Sphinx >= 1.8.1',
+ 'Sphinx >= 1.8.1', # Unicode characters in tree diagrams
'docutils',
- 'pylons-sphinx-themes >= 1.0.8',
+ 'pylons-sphinx-themes >= 1.0.8', # Ethical Ads
'pylons_sphinx_latesturl',
'repoze.sphinx.autointerface',
'sphinxcontrib-autoprogram',
@@ -69,7 +69,6 @@ setup(
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Programming Language :: Python",
- "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
@@ -96,28 +95,27 @@ setup(
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
- python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
+ python_requires='>=3.4',
install_requires=install_requires,
- extras_require={
- ':python_version<"3.2"': ['repoze.lru >= 0.4'],
- 'testing': testing_extras,
- 'docs': docs_extras,
- },
+ extras_require={'testing': testing_extras, 'docs': docs_extras},
tests_require=tests_require,
test_suite="tests",
- entry_points="""\
- [pyramid.pshell_runner]
- python=pyramid.scripts.pshell:python_shell_runner
- [console_scripts]
- pserve = pyramid.scripts.pserve:main
- pshell = pyramid.scripts.pshell:main
- proutes = pyramid.scripts.proutes:main
- pviews = pyramid.scripts.pviews:main
- ptweens = pyramid.scripts.ptweens:main
- prequest = pyramid.scripts.prequest:main
- pdistreport = pyramid.scripts.pdistreport:main
- [paste.server_runner]
- wsgiref = pyramid.scripts.pserve:wsgiref_server_runner
- cherrypy = pyramid.scripts.pserve:cherrypy_server_runner
- """,
+ entry_points={
+ 'paste.server_runner': [
+ 'wsgiref = pyramid.scripts.pserve:wsgiref_server_runner',
+ 'cherrypy = pyramid.scripts.pserve:cherrypy_server_runner',
+ ],
+ 'pyramid.pshell_runner': [
+ 'python = pyramid.scripts.pshell:python_shell_runner'
+ ],
+ 'console_scripts': [
+ 'pserve = pyramid.scripts.pserve:main',
+ 'pshell = pyramid.scripts.pshell:main',
+ 'proutes = pyramid.scripts.proutes:main',
+ 'pviews = pyramid.scripts.pviews:main',
+ 'ptweens = pyramid.scripts.ptweens:main',
+ 'prequest = pyramid.scripts.prequest:main',
+ 'pdistreport = pyramid.scripts.pdistreport:main',
+ ],
+ },
)