summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-05-15 18:46:47 -0500
committerMichael Merickel <michael@merickel.org>2022-05-15 19:55:08 -0500
commitc666acbfa11257abed3395e433d5d0af8a35e260 (patch)
treed7858ed83b2890638eb5810d7629cac5b946e9d4 /setup.cfg
parent0fae4f855bbb356a84f1a2d67d89c75463b131ae (diff)
downloadpastedeploy-git-c666acbfa11257abed3395e433d5d0af8a35e260.tar.gz
refactor package info to setup.cfg, run pyupgrade
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg70
1 files changed, 68 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index f15c017..1544721 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,68 @@
-[wheel]
-universal = true
+[metadata]
+name = PasteDeploy
+version = 2.1.1
+author = Ian Bicking
+author_email = pylons-discuss@googlegroups.com
+maintainer = Chris Dent
+maintainer_email = pylons-discuss@googlegroups.com
+license = MIT
+description = Load, configure, and compose WSGI applications and servers
+keywords =
+ web
+ wsgi
+ application
+ server
+url = https://docs.pylonsproject.org/projects/pastedeploy/en/latest/
+long_description = file: README.rst
+long_description_content_type = text/x-rst
+classifiers =
+ Development Status :: 6 - Mature
+ Intended Audience :: Developers
+ License :: OSI Approved :: MIT License
+ Programming Language :: Python
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
+ Programming Language :: Python :: Implementation :: CPython
+ Programming Language :: Python :: Implementation :: PyPy
+ Topic :: Internet :: WWW/HTTP
+ Topic :: Internet :: WWW/HTTP :: Dynamic Content
+ Topic :: Internet :: WWW/HTTP :: WSGI
+ Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
+ Topic :: Software Development :: Libraries :: Python Modules
+ Framework :: Paste
+project_urls =
+ Documentation = https://docs.pylonsproject.org/projects/pastedeploy/en/latest/
+ Changelog = https://docs.pylonsproject.org/projects/pastedeploy/en/latest/news.html
+ Issue Tracker = https://github.com/Pylons/pastedeploy/issues
+
+[options]
+packages = find:
+zip_safe = False
+install_requires =
+ setuptools
+include_package_data = True
+namespace_packages =
+ paste
+
+[options.packages.find]
+exclude =
+ tests
+
+[options.extras_require]
+config =
+paste =
+ Paste
+docs =
+ Sphinx >= 1.7.5
+ pylons-sphinx-themes
+
+[options.entry_points]
+paste.filter_app_factory =
+ config = paste.deploy.config:make_config_filter [Config]
+ prefix = paste.deploy.config:make_prefix_middleware
+
+paste.paster_create_template =
+ paste_deploy = paste.deploy.paster_templates:PasteDeploy