-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1016 Bytes
/
pyproject.toml
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
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = 'tricot'
version = '1.13.0'
dependencies = [
'PyYAML',
'termcolor',
'docker',
]
requires-python = '>=3.9'
authors = [
{name = 'Tobias Neitzel (@qtc_de)'},
]
maintainers = [
{name = 'Tobias Neitzel (@qtc_de)'}
]
description = 'Trivial Command Testser'
readme = 'README.md'
license = {file = 'LICENSE'}
keywords = ['testing', 'validation', 'test-automation', 'end-to-end-testing', 'testing-framework']
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: Unix',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
]
[project.urls]
Homepage = 'https://github.com/qtc-de/tricot'
Documentation = 'https://github.com/qtc-de/tricot/tree/main/docs'
Repository = 'https://github.com/qtc-de/tricot'
'Bug Tracker' = 'https://github.com/qtc-de/tricot/issues'
Changelog = 'https://github.com/qtc-de/tricot/blob/main/CHANGELOG.md'
[project.scripts]
tricot = 'tricot.main:main'