-
-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modernize packaging using pyproject.toml
- Loading branch information
1 parent
60b4c0c
commit a1430c0
Showing
4 changed files
with
66 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,69 @@ | ||
[tool.coverage.run] | ||
source = ["sorl"] | ||
omit = [ | ||
"*/sorl-thumbnail/sorl/__init__.py", | ||
"*/sorl/thumbnail/__init__.py", | ||
"*/sorl/thumbnail/conf/__init__.py", | ||
"*/sorl/thumbnail/admin/__init__.py", | ||
] | ||
[build-system] | ||
requires = ["setuptools>=64", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.coverage.report] | ||
exclude_lines = [ | ||
"pragma: no cover", | ||
"if __name__ == .__main__.:", | ||
[project] | ||
name = "sorl-thumbnail" | ||
dynamic = ["version"] | ||
description = "Thumbnails for Django" | ||
readme = "README.rst" | ||
license = {file = "LICENSE"} | ||
keywords = ["django", "thumbnail", "sorl"] | ||
authors = [ | ||
{name = "Mikko Hellsing", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Jazzband", email = "[email protected]"} | ||
] | ||
requires-python = ">= 3.8" | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Multimedia :: Graphics', | ||
'Framework :: Django', | ||
'Framework :: Django :: 4.2', | ||
'Framework :: Django :: 5.0', | ||
'Framework :: Django :: 5.1', | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://sorl-thumbnail.readthedocs.io/en/latest/" | ||
Repository = "https://github.com/jazzband/sorl-thumbnail" | ||
|
||
|
||
[tool.coverage.run] | ||
source = ["sorl"] | ||
omit = [ | ||
"*/sorl-thumbnail/sorl/__init__.py", | ||
"*/sorl/thumbnail/__init__.py", | ||
"*/sorl/thumbnail/conf/__init__.py", | ||
"*/sorl/thumbnail/admin/__init__.py", | ||
] | ||
|
||
[tool.coverage.report] | ||
exclude_lines = [ | ||
"pragma: no cover", | ||
"if __name__ == .__main__.:", | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
python_files = ["test_*.py", "*tests.py"] | ||
norecursedirs =[".*", "tmp*", "__pycache__"] | ||
testpaths = ["tests"] | ||
django_find_project = false | ||
|
||
[tool.pytest.ini_options] | ||
python_files = ["test_*.py", "*tests.py"] | ||
norecursedirs =[".*", "tmp*", "__pycache__"] | ||
testpaths = ["tests"] | ||
django_find_project = false | ||
# below line is required to generating versions with setuptools_scm | ||
[tool.setuptools_scm] | ||
|
||
[tool.ruff] | ||
exclude = [ | ||
|