-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.32 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
[project]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
]
dependencies = [
"python-box",
"requests",
"pygount",
"jira",
"python-dotenv",
"python-sonarqube-api",
"cached-property",
"pyyaml",
]
description = "A client help to collect different metrics."
dynamic = ["version"]
license = "MIT"
maintainers = [{name = "Nikhil Dhandare", email = "ndhandre@redhat.com"}]
name = "sitreps-client"
readme = "README.md"
[project.urls]
Source = "https://github.com/digitronik/sitreps-client"
[project.optional-dependencies]
test = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"ipython",
]
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling>=1.3.1",
"hatch-vcs",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = ["/sitreps_client"]
[tool.hatch.build.targets.wheel]
packages = ["/sitreps_client"]