-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15cb73c
commit f2ac93b
Showing
7 changed files
with
634 additions
and
94 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
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,55 +1,56 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "django-pwa" | ||
version = "1.1.0" | ||
description = "A Django app to include a manifest.json and Service Worker instance to enable progressive web app behavior" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "Silvio Luis", email = "[email protected]" }] | ||
maintainers = [{ name = "Christian Hartung", email = "[email protected]" }] | ||
classifiers = [ | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"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", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = ["django>=3.2"] | ||
|
||
[project.urls] | ||
Repository = "http://github.com/silviolleite/django-pwa" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
packages = ["/pwa", "/tests"] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["/pwa"] | ||
|
||
[tool.black] | ||
line-length = 110 | ||
target-version = ["py38", "py39", "py310", "py311", "py312"] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
line_length = 110 | ||
known_localfolder = ["pwa", "tests"] | ||
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "LOCALFOLDER"] | ||
default_section = "THIRDPARTY" | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "django-pwa" | ||
version = "1.1.0" | ||
description = "A Django app to include a manifest.json and Service Worker instance to enable progressive web app behavior" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "Silvio Luis", email = "[email protected]" }] | ||
maintainers = [{ name = "Christian Hartung", email = "[email protected]" }] | ||
classifiers = [ | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"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", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = ["django>=3.2"] | ||
|
||
[project.urls] | ||
Repository = "http://github.com/silviolleite/django-pwa" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
packages = ["/pwa", "/tests"] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["/pwa"] | ||
|
||
[tool.ruff] | ||
extend = "ruff_defaults.toml" | ||
|
||
[tool.ruff.lint] | ||
extend-select = ["DJ"] | ||
|
||
[tool.ruff.lint.extend-per-file-ignores] | ||
"tests/test_*.py" = ["PT"] | ||
|
||
[tool.ruff.lint.flake8-tidy-imports] | ||
ban-relative-imports = "parents" |
Oops, something went wrong.