-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (47 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
59 lines (47 loc) · 1.94 KB
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
[project]
name = "indico-client"
description = "A Python Wrapper for indico app API."
readme = "README.rst"
license = { text = "MIT License" }
authors = [{ name = "indico", email = "engineering@indico.io" }]
requires-python = ">=3.9"
classifiers = ["License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13"]
dependencies = ["requests>=2.22.0", "deprecation>=2.1.0", "jsons", "aiohttp[speedups]"]
dynamic = ["version"]
[project.optional-dependencies]
all = ["msgpack>=0.5.6", "msgpack-numpy==0.4.4.3", "numpy>=1.16.0", "pandas>=1.0.3"]
datasets = ["pandas>=1.0.3"]
deserialization = ["msgpack>=0.5.6", "msgpack-numpy==0.4.4.3", "numpy>=1.16.0"]
exports = ["pandas>=1.0.3"]
test = ["tox==4.11.3"]
deploy = ["twine==3.3.0", "jaraco.functools"]
[project.urls]
Homepage = "https://github.com/IndicoDataSolutions/indico-client-python"
Documentation = "https://indicodatasolutions.github.io/indico-client-python/"
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["indico"]
[tool.hatch.build.targets.sdist]
include = ["indico", "README.rst", "LICENSE"]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
fallback-version = "0.0.0"
vcs = "git"
pattern = "^(?P<base>\\d+(?:\\.\\d+)*)(?:(?:[-\\.])(?P<stage>[a-zA-Z]+)(?P<revision>\\d+)?)?$"
[tool.uv]
cache-keys = [{ file = "pyproject.toml" }, { git = { commit = true, tags = true } }]
[tool.isort]
known_first_party = ["indico"]
profile = "black"
[tool.mypy]
strict = true
packages = ["indico"]
mypy_path = "./stubs:${MYPYPATH}"
[[tool.mypy.overrides]]
module = "importlib_metadata"
ignore_missing_imports = true
[dependency-groups]
dev = ["pytest>=8.4.2", "pytest-mock>=3.15.1"]