50 lines
1.4 KiB
TOML
50 lines
1.4 KiB
TOML
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
[project]
|
|
name = "tailbone-corepos"
|
|
version = "0.3.2"
|
|
description = "Tailbone interfaces for CORE POS"
|
|
readme = "README.md"
|
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
|
license = {text = "GNU GPL v3+"}
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Web Environment",
|
|
"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",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Topic :: Office/Business",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
|
|
dependencies = [
|
|
"rattail",
|
|
"rattail-corepos",
|
|
"Tailbone",
|
|
]
|
|
|
|
|
|
[project.urls]
|
|
Homepage = "https://rattailproject.org"
|
|
Repository = "https://forgejo.wuttaproject.org/rattail/tailbone-corepos"
|
|
Issues = "https://forgejo.wuttaproject.org/rattail/tailbone-corepos/issues"
|
|
Changelog = "https://forgejo.wuttaproject.org/rattail/tailbone-corepos/src/branch/master/CHANGELOG.md"
|
|
|
|
|
|
[project.entry-points."tailbone.providers"]
|
|
tailbone_corepos = "tailbone_corepos.provider:TailboneCorePosProvider"
|
|
|
|
|
|
[tool.commitizen]
|
|
version_provider = "pep621"
|
|
tag_format = "v$version"
|
|
update_changelog_on_bump = true
|