-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (53 loc) · 2.09 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "qgate_graph" # Required
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
description = "Generate graphs based on outputs from Quality Gate" # Optional
requires-python = ">=3.6"
license = {text = "MIT"}
#license = {file = "LICENSE"}
keywords = ["Quality", "QualityGate", "Graph"] # Optional
authors = [
{name = "Jiri Steuer", email = "[email protected]" } # Optional
]
maintainers = [
{name = "Jiri Steuer", email = "[email protected]" } # Optional
]
classifiers = [ # Optional
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
[project.urls] # Optional
homepage='https://github.com/george0st/qgate-graph/'
repository='https://pypi.org/project/qgate_graph/'
#"Homepage" = 'https://github.com/george0st/qgate-perf/'
#download_url='https://pypi.org/project/qgate_perf/'
#"Source" = "https://github.com/pypa/sampleproject/"
[tool.setuptools]
include-package-data = false
# it has relation only to --wheel
[tool.setuptools.packages.find]
include = ["qgate_graph*"]
exclude = ["input*", "output*", "tests*"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "qgate_graph.__version__"}
dependencies = { file = ["requirements.txt"] }
optional-dependencies.dev = { file = ["dev-requirements.txt"] }