feat: initial code, as generated by Rattail Demo site
https://demo.rattailproject.org/generated-projects/new/wutta
This commit is contained in:
commit
9f17ac40d0
22 changed files with 345 additions and 0 deletions
66
pyproject.toml
Normal file
66
pyproject.toml
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
|
||||
[project]
|
||||
name = "Wutta-Demo"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
readme = "README.md"
|
||||
authors = [{name = "Your Name", email = "you@example.com"}]
|
||||
keywords = ["Wutta Demo"]
|
||||
classifiers = [
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Environment :: Web Environment",
|
||||
"Framework :: Pyramid",
|
||||
"Intended Audience :: Developers",
|
||||
"Natural Language :: English",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
|
||||
# TODO: remove this if you intend to publish your project
|
||||
# (it's here by default, to prevent accidental publishing)
|
||||
"Private :: Do Not Upload",
|
||||
]
|
||||
# requires-python = ">= 3.9"
|
||||
dependencies = [
|
||||
"psycopg2",
|
||||
"Wutta-Continuum",
|
||||
"WuttaWeb",
|
||||
|
||||
# TODO: these may be needed to build/release package
|
||||
#'build',
|
||||
#'invoke',
|
||||
#'twine',
|
||||
]
|
||||
|
||||
|
||||
[project.scripts]
|
||||
wuttademo = "wuttademo.commands:wuttademo_typer"
|
||||
|
||||
|
||||
[project.entry-points."wutta.config.extensions"]
|
||||
|
||||
"wuttademo" = "wuttademo.config:WuttaDemoConfig"
|
||||
[project.entry-points."paste.app_factory"]
|
||||
|
||||
"main" = "wuttademo.web.app:main"
|
||||
|
||||
|
||||
# [project.urls]
|
||||
# Homepage = "https://example.com/"
|
||||
# Repository = "https://github.com/example/wuttademo"
|
||||
# Issues = "https://github.com/example/wuttademo/issues"
|
||||
# Changelog = "https://github.com/example/wuttademo/blob/master/CHANGELOG.md"
|
||||
|
||||
|
||||
# [tool.commitizen]
|
||||
# version_provider = "pep621"
|
||||
# tag_format = "v$version"
|
||||
# update_changelog_on_bump = true
|
||||
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["wuttademo"]
|
Loading…
Add table
Add a link
Reference in a new issue