-
Notifications
You must be signed in to change notification settings - Fork 58
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 #160 from Pylons/structure
refactor repo structure
- Loading branch information
Showing
79 changed files
with
269 additions
and
198 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
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 |
---|---|---|
@@ -1,7 +1,21 @@ | ||
recursive-include docs * | ||
recursive-include pyramid_jinja2 * | ||
graft src/pyramid_jinja2 | ||
graft tests | ||
graft docs | ||
graft demo | ||
graft .github | ||
|
||
recursive-exclude docs *.pyc | ||
recursive-exclude pyramid_jinja2 *.pyc | ||
include README.rst | ||
include CHANGES.txt | ||
include LICENSE.txt | ||
include CONTRIBUTORS.txt | ||
include COPYRIGHT.txt | ||
|
||
include *.txt *.ini *.rst | ||
include pyproject.toml | ||
include setup.cfg | ||
include .coveragerc | ||
include tox.ini | ||
include rtd.txt | ||
|
||
prune docs/_build | ||
|
||
recursive-exclude * __pycache__ *.py[cod] |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,25 @@ | ||
[build-system] | ||
requires = ["setuptools >= 41"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.black] | ||
target-version = ['py37', 'py38', 'py39', 'py310'] | ||
exclude = ''' | ||
/( | ||
\.git | ||
| .tox | ||
)/ | ||
''' | ||
|
||
[tool.isort] | ||
profile = "black" | ||
multi_line_output = 3 | ||
src_paths = ["src", "tests"] | ||
skip_glob = ["docs/*"] | ||
include_trailing_comma = true | ||
force_grid_wrap = false | ||
combine_as_imports = true | ||
line_length = 88 | ||
force_sort_within_sections = true | ||
default_section = "THIRDPARTY" | ||
known_first_party = "pyramid_jinja2" |
This file was deleted.
Oops, something went wrong.
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,18 +1,65 @@ | ||
[egg_info] | ||
tag_build = | ||
tag_date = 0 | ||
tag_svn_revision = 0 | ||
[metadata] | ||
name = pyramid_jinja2 | ||
version = 2.8 | ||
description = Jinja2 template bindings for the Pyramid web framework | ||
long_description = file: README.rst, CHANGES.txt | ||
long_description_content_type = text/x-rst | ||
keywords = web wsgi pylons pyramid jinja2 | ||
license = BSD-derived (Repoze) | ||
classifiers = | ||
Development Status :: 6 - Mature, | ||
Intended Audience :: Developers, | ||
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, | ||
Framework :: Pyramid, | ||
License :: Repoze Public License, | ||
url = https://github.com/Pylons/pyramid_jinja2 | ||
project_urls = | ||
Documentation = https://docs.pylonsproject.org/projects/pyramid_jinja2/en/latest/ | ||
Changelog = https://github.com/Pylons/pyramid_jinja2/blob/master/CHANGES.txt | ||
Issue Tracker = https://github.com/Pylons/pyramid_jinja2/issues | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
author = Rocky Burt | ||
author_email = pylons-discuss@googlegroups.com | ||
maintainer = Pylons Project | ||
maintainer_email = pylons-discuss@googlegroups.com | ||
|
||
[aliases] | ||
dev = develop easy_install pyramid_jinja2[testing] | ||
docs = develop easy_install pyramid_jinja2[docs] | ||
[options] | ||
package_dir= | ||
=src | ||
packages=find: | ||
python_requires = >=3.7.0 | ||
install_requires = | ||
jinja2>=2.5.0,!=2.11.0,!=2.11.1,!=2.11.2 | ||
markupsafe | ||
pyramid>=1.3.0 # pyramid.path.DottedNameResolver | ||
zope.deprecation | ||
|
||
[options.packages.find] | ||
where=src | ||
|
||
[options.entry_points] | ||
pyramid.scaffold = | ||
pyramid_jinja2_starter = pyramid_jinja2.scaffolds:Jinja2ProjectTemplate | ||
|
||
[options.extras_require] | ||
testing = | ||
webtest | ||
coverage | ||
pytest>=5.4.2 | ||
pytest-cov | ||
|
||
docs = | ||
pylons-sphinx-themes >= 0.3 | ||
sphinx>=1.7.5 | ||
|
||
[tool:pytest] | ||
python_files = test_*.py | ||
testpaths = | ||
pyramid_jinja2/demo | ||
pyramid_jinja2/tests | ||
demo | ||
tests | ||
addopts = -W always |
Oops, something went wrong.