2024-08-27 19:18:35 -05:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "Wutta-Continuum"
|
2024-08-27 21:23:18 -05:00
|
|
|
version = "0.1.1"
|
2024-12-05 08:37:55 -06:00
|
|
|
description = "SQLAlchemy-Continuum versioning for Wutta Framework"
|
2024-08-27 19:18:35 -05:00
|
|
|
readme = "README.md"
|
2024-12-05 08:38:09 -06:00
|
|
|
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
2024-08-27 19:18:35 -05:00
|
|
|
license = {text = "GNU GPL v3+"}
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"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",
|
|
|
|
]
|
|
|
|
requires-python = ">= 3.8"
|
|
|
|
dependencies = [
|
|
|
|
"SQLAlchemy-Continuum",
|
2024-12-07 23:48:16 -06:00
|
|
|
"WuttJamaican[db]>=0.17.0",
|
2024-08-27 19:18:35 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
docs = ["Sphinx", "furo"]
|
|
|
|
tests = ["pytest-cov", "tox"]
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."wutta.app.providers"]
|
|
|
|
wutta_continuum = "wutta_continuum.app:WuttaContinuumAppProvider"
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."wutta.config.extensions"]
|
|
|
|
wutta_continuum = "wutta_continuum.conf:WuttaContinuumConfigExtension"
|
|
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://wuttaproject.org/"
|
|
|
|
Repository = "https://forgejo.wuttaproject.org/wutta/wutta-continuum"
|
2024-12-05 08:38:09 -06:00
|
|
|
Issues = "https://forgejo.wuttaproject.org/wutta/wutta-continuum/issues"
|
2024-08-27 19:18:35 -05:00
|
|
|
Changelog = "https://forgejo.wuttaproject.org/wutta/wutta-continuum/src/branch/master/CHANGELOG.md"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
version_provider = "pep621"
|
|
|
|
tag_format = "v$version"
|
|
|
|
update_changelog_on_bump = true
|
|
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
exclude = [
|
|
|
|
"htmlcov/",
|
|
|
|
]
|