-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from Pylons/refactor-package
- Loading branch information
Showing
9 changed files
with
97 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
include docs/*.txt | ||
include license.txt | ||
graft .github | ||
graft tests | ||
graft paste/deploy/paster_templates | ||
|
||
include docs/*.txt | ||
include license.txt | ||
include pytest.ini | ||
include tox.ini | ||
include rtd.txt | ||
include pyproject.toml | ||
include contributing.md | ||
|
||
global-exclude __pycache__ *.py[cod] | ||
global-exclude .DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools >= 41"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,68 @@ | ||
[wheel] | ||
universal = true | ||
[metadata] | ||
name = PasteDeploy | ||
version = 2.1.1 | ||
author = Ian Bicking | ||
author_email = [email protected] | ||
maintainer = Chris Dent | ||
maintainer_email = [email protected] | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,3 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
from setuptools import setup, find_packages | ||
|
||
here = os.path.dirname(__file__) | ||
readme_path = os.path.join(here, "README.rst") | ||
readme = open(readme_path).read() | ||
|
||
docs_extras = [ | ||
"Sphinx >= 1.7.5", # Read The Docs minimum version | ||
"pylons-sphinx-themes", | ||
] | ||
|
||
setup( | ||
name="PasteDeploy", | ||
version="3.0.dev0", | ||
description="Load, configure, and compose WSGI applications and servers", | ||
long_description=readme, | ||
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", | ||
], | ||
keywords="web wsgi application server", | ||
author="Ian Bicking", | ||
author_email="[email protected]", | ||
maintainer="Chris Dent", | ||
maintainer_email="[email protected]", | ||
url="https://pylonsproject.org/", | ||
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", | ||
}, | ||
license="MIT", | ||
namespace_packages=["paste"], | ||
packages=find_packages(exclude=["tests"]), | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=['setuptools'], | ||
extras_require={ | ||
"Config": [], | ||
"Paste": ["Paste"], | ||
"docs": docs_extras, | ||
}, | ||
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 | ||
""" | ||
) | ||
setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters