-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (59 loc) · 1.2 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]
[project]
name = "enlyze"
description = "Python SDK for interacting with the ENLYZE platform https://www.enlyze.com"
readme = "README.rst"
license = { text = "MIT" }
authors = [ { name = "ENLYZE GmbH", email = "[email protected]" } ]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [
"version",
]
dependencies = [
"httpx",
"pandas>=2",
"pydantic>=2",
]
optional-dependencies.docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-tabs",
"sphinxcontrib-spelling",
]
optional-dependencies.lint = [
"bandit",
"black",
"flake8",
"isort",
"mypy",
"pyproject-fmt",
"tox-ini-fmt",
]
optional-dependencies.test = [
"coverage",
"hypothesis",
"pandas-stubs",
"pytest",
"pytest-cov",
"pytest-randomly",
"pytest-sugar",
"pytest-xdist",
"respx",
]
[tool.setuptools.dynamic]
version = { attr = "enlyze._version.VERSION" }
[tool.isort]
profile = "black"
[tool.mypy]
exclude = "tests"