summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMichael Merickel <mmerickel@users.noreply.github.com>2016-04-12 19:01:57 -0500
committerMichael Merickel <mmerickel@users.noreply.github.com>2016-04-12 19:01:57 -0500
commitefaf7300c9c3ef2a795aae7f724bf5b02e96cd75 (patch)
tree71d519b06340bb6bf7f686b4429a5d51235bf42f /setup.py
parent73cd1e62745fddee602e95837f155ffd499e51b7 (diff)
parentccd9e10cb15fa7256feb47663eb994cd00dfe782 (diff)
downloadpyramid-efaf7300c9c3ef2a795aae7f724bf5b02e96cd75.tar.gz
pyramid-efaf7300c9c3ef2a795aae7f724bf5b02e96cd75.tar.bz2
pyramid-efaf7300c9c3ef2a795aae7f724bf5b02e96cd75.zip
Merge pull request #2467 from Pylons/remove.py26
Remove: py26
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py48
1 files changed, 23 insertions, 25 deletions
diff --git a/setup.py b/setup.py
index e26ae80d8..e5ea4c5dc 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ try:
except IOError:
README = CHANGES = ''
-install_requires=[
+install_requires = [
'setuptools',
'WebOb >= 1.3.1', # request.domain and CookieProfile
'repoze.lru >= 0.4', # py3 compat
@@ -74,24 +74,23 @@ testing_extras = tests_require + [
setup(name='pyramid',
version='1.7.dev0',
description='The Pyramid Web Framework, a Pylons project',
- long_description=README + '\n\n' + CHANGES,
+ long_description=README + '\n\n' + CHANGES,
classifiers=[
- "Development Status :: 6 - Mature",
- "Intended Audience :: Developers",
- "Programming Language :: Python",
- "Programming Language :: Python :: 2.6",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.3",
- "Programming Language :: Python :: 3.4",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: Implementation :: CPython",
- "Programming Language :: Python :: Implementation :: PyPy",
- "Framework :: Pyramid",
- "Topic :: Internet :: WWW/HTTP",
- "Topic :: Internet :: WWW/HTTP :: WSGI",
- "License :: Repoze Public License",
- ],
+ "Development Status :: 6 - Mature",
+ "Intended Audience :: Developers",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: 3.5",
+ "Programming Language :: Python :: Implementation :: CPython",
+ "Programming Language :: Python :: Implementation :: PyPy",
+ "Framework :: Pyramid",
+ "Topic :: Internet :: WWW/HTTP",
+ "Topic :: Internet :: WWW/HTTP :: WSGI",
+ "License :: Repoze Public License",
+ ],
keywords='web wsgi pylons pyramid',
author="Chris McDonough, Agendaless Consulting",
author_email="pylons-discuss@googlegroups.com",
@@ -100,14 +99,14 @@ setup(name='pyramid',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
- install_requires = install_requires,
- extras_require = {
- 'testing':testing_extras,
- 'docs':docs_extras,
+ install_requires=install_requires,
+ extras_require={
+ 'testing': testing_extras,
+ 'docs': docs_extras,
},
- tests_require = tests_require,
+ tests_require=tests_require,
test_suite="pyramid.tests",
- entry_points = """\
+ entry_points="""\
[pyramid.scaffold]
starter=pyramid.scaffolds:StarterProjectTemplate
zodb=pyramid.scaffolds:ZODBProjectTemplate
@@ -128,4 +127,3 @@ setup(name='pyramid',
cherrypy = pyramid.scripts.pserve:cherrypy_server_runner
"""
)
-