File: pyproject.toml

package info (click to toggle)
hatch-tryton 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: python: 467; sh: 9; makefile: 3
file content (40 lines) | stat: -rw-r--r-- 1,116 bytes parent folder | download
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'