2024-06-10 19:40:59 -05:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "rattail-wave"
|
2024-08-18 20:10:29 -05:00
|
|
|
version = "0.3.2"
|
2024-06-10 19:40:59 -05:00
|
|
|
description = "Rattail integration package for Wave"
|
2024-09-13 18:19:51 -05:00
|
|
|
readme = "README.md"
|
2024-06-10 19:40:59 -05:00
|
|
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
|
|
|
license = {text = "GNU GPL v3+"}
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Environment :: Console",
|
|
|
|
"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",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"invoke",
|
|
|
|
"rattail[db]",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."rattail.typer_imports"]
|
|
|
|
rattail_wave = "rattail_wave.commands"
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."rattail.config.extensions"]
|
|
|
|
rattail_wave = "rattail_wave.config:RattailWaveExtension"
|
|
|
|
|
|
|
|
|
|
|
|
[project.entry-points."rattail.importing"]
|
|
|
|
"to_rattail.from_wave.import" = "rattail_wave.importing.wave:FromWaveToRattail"
|
|
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://rattailproject.org"
|
2024-09-14 12:48:37 -05:00
|
|
|
Repository = "https://forgejo.wuttaproject.org/rattail/rattail-wave"
|
|
|
|
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-wave/src/branch/master/CHANGELOG.md"
|
2024-06-10 19:40:59 -05:00
|
|
|
|
|
|
|
|
|
|
|
[tool.commitizen]
|
|
|
|
version_provider = "pep621"
|
|
|
|
tag_format = "v$version"
|
|
|
|
update_changelog_on_bump = true
|