-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (40 loc) · 948 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm", "Cython"]
build-backend = "setuptools.build_meta"
[project]
name = "spatial_graph"
description = "A spatial graph datastructure for python."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = []
license = { text = "MIT" }
authors = [
{ email = "funkej@janelia.hhmi.org", name = "Jan Funke" },
]
dynamic = ["version"]
dependencies = [
"witty @ git+https://github.com/funkelab/witty.git@v0.1",
"cheetah3",
"numpy",
]
[project.optional-dependencies]
dev = [
'pytest',
'ruff',
'mypy',
'pdoc',
'pre-commit',
'cython',
]
[project.urls]
homepage = "https://github.com/funkelab/spatial_graph"
repository = "https://github.com/funkelab/spatial_graph"
[tool.setuptools]
packages = ["spatial_graph"]
package-data = { "spatial_graph" = ["*.pyi"] }
[tool.ruff]
target-version = "py39"
src = ["spatial_graph"]