-
Notifications
You must be signed in to change notification settings - Fork 2
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
8dd62c6
commit f981aaf
Showing
7 changed files
with
58 additions
and
3,020 deletions.
There are no files selected for viewing
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,56 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0", "setuptools-git-versioning"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
dynamic = ["version"] | ||
name = "dgbowl-schemas" | ||
authors = [ | ||
{name = "Peter Kraus", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Peter Kraus", email = "[email protected]"}, | ||
] | ||
description = "schemas for the dgbowl suite of tools" | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python = ">= 3.9" | ||
dependencies = [ | ||
"pydantic >= 2.0", | ||
"babel >= 2.15", | ||
"pyyaml >= 5.0", | ||
"tzlocal >= 5.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
testing = ["pytest"] | ||
docs = [ | ||
"sphinx ~= 6.2", | ||
"sphinx-rtd-theme ~= 1.3", | ||
"sphinx-autodoc-typehints", | ||
"autodoc-pydantic >= 2.0.0", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://dgbowl.github.io/dgbowl_schemas/main" | ||
Issues = "https://github.com/dgbowl/dgbowl_schemas/issues" | ||
Repository = "https://github.com/dgbowl/dgbowl_schemas/" | ||
|
||
[tool.setuptools-git-versioning] | ||
enabled = true | ||
dev_template = "{tag}.dev{ccount}" | ||
dirty_template = "{tag}.dev{ccount}" | ||
|
||
[tool.ruff] | ||
|
||
[tool.pytest.ini_options] | ||
log_cli = false | ||
log_cli_level = "DEBUG" |
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,5 +1,5 @@ | ||
from . import dgpost, yadg, tomato | ||
from . import _version | ||
from importlib.metadata import version | ||
|
||
__version__ = _version.get_versions()["version"] | ||
__version__ = version("dgbowl_schemas") | ||
__all__ = ["dgpost", "yadg", "tomato"] |
Oops, something went wrong.