-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (91 loc) · 2.51 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "probely"
dynamic = ["version"]
description = "CLI and SDK wrappers for Probely's API"
authors = [
{ name = "Probely", email = "[email protected]" },
]
maintainers = [
{ name = "João Silva", email = "[email protected]" },
{ name = "Vladimir Kontic", email = "[email protected]" },
{ name = "Temidire Adams", email = "[email protected]" }
]
license = { file = "LICENSE" }
keywords = ["probely", "cli", "sdk", "api", "client", "wrapper"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
]
readme = "README.md"
requires-python = ">= 3.8"
dependencies = [
"requests",
"rich",
"rich-argparse",
"environs",
"marshmallow",
"pyyaml",
"mergedeep",
"python-dateutil", # Python <= 3.10's fromisoformat is not a full ISO-8601 format parser
"toml", # Python < 3.11's doesn't support toml
"pydantic[email]",
]
[project.optional-dependencies]
test = [
"pytest",
#"pytest-cov",
"tox",
]
docs = [
"sphinx",
"sphinx-argparse-cli",
"sphinx-markdown-builder",
]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
include_trailing_comma = true
line_length = 88
[project.scripts]
probely = "probely.cli:app"
[project.urls]
Homepage = "https://probely.com"
Documentation = "https://developers.probely.com"
Repository = "https://github.com/probely/probely-python.git"
"Bug Tracker" = "https://github.com/probely/probely-python/issues"
#Changelog = "https://github.com/probely/probely-python/blob/master/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.gitlab",
"/.tox",
"/builds",
"/docs",
"/examples",
"/tests",
"/tox.ini",
]
[tool.hatch.build.targets.wheel]
packages = ["probely"]
[tool.hatch.version]
path = "probely/version.py"