67 lines
1.6 KiB
TOML
67 lines
1.6 KiB
TOML
|
|
[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"]
|