-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.0rc
- Loading branch information
Showing
8 changed files
with
12 additions
and
91 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,7 +1,7 @@ | ||
include README.md | ||
include LICENSE.txt | ||
include CONTRIBUTING.md | ||
include pyproject.toml | ||
include setup/setup.py | ||
recursive-include tests * | ||
global-exclude __pycache__ | ||
global-exclude *.pyc |
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,4 +1,2 @@ | ||
from ._version import __version__ | ||
version = __version__ | ||
|
||
from .version import __version__, version | ||
from .document import document |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
version = __version__ = '3.0.0' |
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=62"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "dominate" | ||
description = "Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API." | ||
|
@@ -10,7 +6,7 @@ authors = [ | |
{name = "Tom Flanagan", email = "[email protected]"}, | ||
{name = "Jake Wharton"}, | ||
] | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.9" | ||
keywords = ["framework", "templating", "template", "html", "xhtml", "python", "html5"] | ||
license = {text = "LGPL-3.0-or-newer"} | ||
classifiers = [ | ||
|
@@ -19,12 +15,11 @@ classifiers = [ | |
"Operating System :: OS Independent", | ||
"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 :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
|
@@ -36,8 +31,13 @@ dynamic = ["version"] | |
Homepage = "https://github.com/Knio/dominate" | ||
Source = "https://github.com/Knio/dominate" | ||
|
||
|
||
[build-system] | ||
requires = ["setuptools>=75"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
packages = ["dominate"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "dominate._version.__version__"} | ||
version = {attr = "dominate.version.version"} |
This file was deleted.
Oops, something went wrong.