717f9518ff
just the very basics to get things in place
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
[project]
|
|
name = "WuttaPOS"
|
|
version = "0.2.1"
|
|
description = "Pythonic Point of Sale System"
|
|
readme = "README.md"
|
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
|
license = {text = "GNU GPL v3+"}
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Win32 (MS Windows)",
|
|
"Environment :: X11 Applications",
|
|
"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",
|
|
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
|
|
]
|
|
dependencies = [
|
|
"psycopg2",
|
|
"rattail[db]",
|
|
"typer",
|
|
|
|
# nb. for now we are just testing one version, for simplicity
|
|
"flet==0.23.2",
|
|
]
|
|
|
|
|
|
[project.optional-dependencies]
|
|
docs = ["Sphinx", "furo"]
|
|
|
|
|
|
[project.scripts]
|
|
wuttapos = "wuttapos.commands:wuttapos_typer"
|
|
|
|
|
|
[project.entry-points."rattail.config.extensions"]
|
|
wuttapos = "wuttapos.config:WuttaConfigExtension"
|
|
|
|
|
|
[project.urls]
|
|
Homepage = "https://rattailproject.org"
|
|
Repository = "https://kallithea.rattailproject.org/rattail-project/wuttapos"
|
|
Changelog = "https://kallithea.rattailproject.org/rattail-project/wuttapos/files/master/CHANGELOG.md"
|
|
|
|
|
|
[tool.commitizen]
|
|
version_provider = "pep621"
|
|
tag_format = "v$version"
|
|
update_changelog_on_bump = true
|