forked from SeequentEvo/evo-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (71 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
86 lines (71 loc) · 2.21 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
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "evo-sdk"
version = "0.1.17"
description = "Python SDK for using Seequent Evo"
requires-python = ">=3.10"
dependencies = [
"evo-sdk-common[aiohttp,notebooks,jmespath]>=0.5.12",
"evo-blockmodels[aiohttp,notebooks,pyarrow]>=0.1.0",
"evo-objects[aiohttp,notebooks,utils]>=0.3.3",
"evo-files[aiohttp,notebooks]>=0.2.3",
"evo-colormaps[aiohttp,notebooks]>=0.0.2",
"evo-compute[aiohttp,notebooks]>=0.0.1rc2",
"jupyter",
]
dynamic = ["readme"]
[project.urls]
Source = "https://github.com/SeequentEvo/evo-python-sdk"
Tracker = "https://github.com/SeequentEvo/evo-python-sdk/issues"
Homepage = "https://www.seequent.com/"
Documentation = "https://developer.seequent.com/"
[dependency-groups]
test = [
"pytest",
"freezegun",
"parameterized==0.9.0",
"pytest-asyncio>=1.1.0",
]
dev = [
"pre-commit >= 4",
"ruff==0.14.0", # keep in sync with .pre-commit-config.yaml
"bumpver",
"coverage[toml]",
{ include-group = "test" },
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I", "RUF022"]
[tool.ruff.lint.isort]
known-first-party = ["evo"]
[tool.uv]
required-version = ">=0.9.0,<0.10.0"
[tool.uv.sources]
evo-sdk-common = { workspace = true }
evo-colormaps = { workspace = true }
evo-files = { workspace = true }
evo-objects = { workspace = true }
evo-compute = { workspace = true }
samples = { path = "samples" }
evo-blockmodels = { workspace = true }
[tool.uv.workspace]
members = ["packages/*"]
[[tool.uv.index]]
name = "pypi.org"
url = "https://pypi.org/simple"
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["packages"]
[tool.hatch.build.targets.wheel]
include = ["packages"]
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
# Literal TOML strings (single quotes) need no escaping of backslashes.
# Converts relative links to absolute links in PyPI
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
replacement = '[\1](https://github.com/SeequentEvo/evo-python-sdk/tree/main/\g<2>)'