1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
[build-system]
requires = ['hatchling >= 1']
build-backend = 'hatchling.build'
[project]
name = 'hatch-tryton'
dynamic = ['version']
dependencies = ['hatchling']
requires-python = '>=3.9'
authors = [
{name = "Cédric Krier", email = "cedric.krier@b2ck.com"},
]
maintainers = [
{name = "Tryton", email = "foundation@tryton.org"},
]
description = "A hatchling plugin for Tryton"
readme = 'README.rst'
license = 'MIT'
license-files = ['LICENSE', 'COPYRIGHT']
keywords = ["tryton", "hatch"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: Hatch",
"Framework :: Tryton",
"Topic :: System :: Archiving :: Packaging",
]
[project.entry-points.hatch]
tryton = 'hatch_tryton.hooks'
[project.urls]
homepage = "https://www.tryton.org/"
changelog = "https://code.tryton.org/hatch-tryton/-/blob/branch/default/CHANGELOG"
forum = "https://discuss.tryton.org/tags/hatch-tryton"
issues = "https://bugs.tryton.org/hatch-tryton"
repository = "https://code.tryton.org/hatch-tryton"
[tool.hatch.version]
path = 'hatch_tryton/__init__.py'
|