-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.54 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
[build-system]
requires = ["setuptools>=40.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "telemetry"
dynamic = ["readme"]
version = "0.0.1"
description = "Python module for simplifying collection and display of test data"
authors = [{ name = "Travis F. Collins", email = "travis.collins@analog.com" }]
license = { text = "BSD License" }
requires-python = ">=3.5"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"Click>=7.0",
"elasticsearch>=7.16.0",
"pymongo[srv]",
"bs4",
"tqdm",
"requests",
"pygithub",
"minio",
"junitparser",
"pyyaml",
]
[tool.setuptools.dynamic]
readme = { file = "README.rst", content-type = "text/x-rst" }
[tool.setuptools]
packages = ["telemetry", "telemetry.gparser", "telemetry.prod", "telemetry.report", "telemetry.dev"]
[project.scripts]
telemetry = "telemetry.cli:cli"
[project.entry-points.pytest11]
telemetry = "telemetry.plugin"
[project.urls]
homepage = "https://sdgtt.github.io/telemetry/"
documentation = "https://sdgtt.github.io/telemetry/"
repository = "https://github.com/sdgtt/telemetry"
[tool.setuptools.package-data]
telemetry = ["resources/*.json", "tests/test_artifacts/*", "report/templates/*.md"]