initial contents as generated via cookiecutter-wuttaweb
This commit is contained in:
commit
4495a94611
14 changed files with 274 additions and 0 deletions
51
pyproject.toml
Normal file
51
pyproject.toml
Normal file
|
@ -0,0 +1,51 @@
|
|||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "Sideshow"
|
||||
version = "0.1.0"
|
||||
description = "Case/Special Order Tracker"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{name = "Lance Edgar", email = "lance@wuttaproject.org"}
|
||||
]
|
||||
maintainers = [
|
||||
{name = "Lance Edgar", email = "lance@wuttaproject.org"}
|
||||
]
|
||||
classifiers = [
|
||||
# TODO: remove this if you intend to publish your project
|
||||
# (it's here by default, to prevent accidental publishing)
|
||||
"Private :: Do Not Upload",
|
||||
]
|
||||
license = {text = "GNU General Public License v3"}
|
||||
dependencies = [
|
||||
"psycopg2",
|
||||
"WuttaWeb",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
"sideshow" = "sideshow.cli:sideshow_typer"
|
||||
|
||||
[project.entry-points."paste.app_factory"]
|
||||
"main" = "sideshow.web.app:main"
|
||||
|
||||
[project.entry-points."wutta.config.extensions"]
|
||||
"sideshow" = "sideshow.config:SideshowConfig"
|
||||
|
||||
|
||||
# [project.urls]
|
||||
# Homepage = "https://example.com/"
|
||||
# Repository = "https://github.com/example/sideshow"
|
||||
# Issues = "https://github.com/example/sideshow/issues"
|
||||
# Changelog = "https://github.com/example/sideshow/blob/master/CHANGELOG.md"
|
||||
|
||||
|
||||
# [tool.commitizen]
|
||||
# version_provider = "pep621"
|
||||
# tag_format = "v$version"
|
||||
# update_changelog_on_bump = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["sideshow"]
|
Loading…
Add table
Add a link
Reference in a new issue