2024-07-01 11:03:11 -05:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "rattail-tutorial"
|
2024-07-01 11:46:10 -05:00
|
|
|
version = "0.3.1"
|
2024-07-01 11:03:11 -05:00
|
|
|
description = "Rattail Development Tutorial"
|
2024-09-13 18:21:24 -05:00
|
|
|
readme = "README.md"
|
2024-07-01 11:03:11 -05:00
|
|
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
|
|
|
license = {text = "GNU GPL v3+"}
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Pyramid",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Topic :: Office/Business",
|
|
|
|
]
|
|
|
|
dependencies = [
|
2024-07-01 11:09:44 -05:00
|
|
|
"furo",
|
2024-07-01 11:03:11 -05:00
|
|
|
"invoke",
|
|
|
|
"psycopg2",
|
2024-07-01 11:21:34 -05:00
|
|
|
"rattail[db,bouncer]",
|
2024-07-01 11:09:44 -05:00
|
|
|
"Sphinx",
|
2024-07-01 11:03:11 -05:00
|
|
|
"Tailbone",
|
|
|
|
"tox",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
2024-07-01 11:21:34 -05:00
|
|
|
rattail_tutorial = "rattail_tutorial.commands:rattail_tutorial_typer"
|
2024-07-01 11:03:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."paste.app_factory"]
|
|
|
|
main = "rattail_tutorial.web.app:main"
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."rattail.config.extensions"]
|
2024-07-01 13:25:31 -05:00
|
|
|
rattail_tutorial = "rattail_tutorial.config:RattailTutorialConfig"
|
2024-07-01 11:03:11 -05:00
|
|
|
|
|
|
|
|
2024-07-09 10:16:31 -05:00
|
|
|
[project.entry-points."rattail.emails"]
|
|
|
|
rattail_tutorial = "rattail_tutorial.emails"
|
|
|
|
|
|
|
|
|
2024-07-01 11:03:11 -05:00
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://rattailproject.org"
|
2024-09-14 10:47:30 -05:00
|
|
|
repository = "https://forgejo.wuttaproject.org/rattail/rattail-tutorial"
|
|
|
|
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-tutorial/src/branch/master/CHANGELOG.md"
|
2024-07-01 11:03:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
version_provider = "pep621"
|
|
|
|
tag_format = "v$version"
|
|
|
|
update_changelog_on_bump = true
|