-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling==1.27.0"]
build-backend = "hatchling.build"
[project]
name = "orbita-python"
version = "0.1.0.dev1"
description = "Python client for Orbita"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [{ name = "Orbita contributors" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Database :: Database Engines/Servers",
]
dependencies = [
"grpcio>=1.75.1,<2",
"protobuf>=6.31.1,<7",
]
[project.urls]
Homepage = "https://github.com/orbita-rocks/orbita-python"
Repository = "https://github.com/orbita-rocks/orbita-python"
Issues = "https://github.com/orbita-rocks/orbita-python/issues"
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"grpcio-tools==1.75.1",
"mypy>=1.14,<2",
"pytest>=8.3,<9",
"pytest-cov>=6,<8",
"ruff>=0.9,<1",
"types-protobuf>=6.31.1,<7",
"twine>=6,<7",
]
[tool.hatch.build.targets.wheel]
packages = ["src/orbita"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q -ra"
markers = ["integration: requires ORBITA_ENDPOINT and ORBITA_ROOT_CREDENTIAL"]
[tool.ruff]
target-version = "py39"
line-length = 100
extend-exclude = ["src/orbita/v1/*"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
ignore = ["UP006", "UP007", "UP035", "UP045"]
[tool.mypy]
python_version = "3.9"
strict = true
packages = ["orbita"]
exclude = ["src/orbita/v1/"]
[[tool.mypy.overrides]]
module = ["grpc.*", "orbita.v1.*"]
ignore_missing_imports = true
ignore_errors = true