-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (64 loc) · 1.99 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
[project]
name = "connects-common-connectivity"
version = "0.1.0"
description = "Common connectivity data models and utilities (LinkML + Pydantic) for BRAIN CONNECTS pilot"
authors = [ { name = "Forrest Collman" } ]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
keywords = ["connectivity", "neuroscience", "linkml", "pydantic"]
dependencies = [
"caveclient>=7.11.1",
"deltalake>=1.2.0",
"jupyter>=1.1.1",
"linkml>=1.7.0",
"linkml-runtime>=1.9.5",
"linkml-store>=0.2.11",
"pandas>=2.3.3",
"polars>=1.34.0",
"pyarrow>=21.0.0",
"pydantic>=2.6,<3",
"pyyaml>=6.0",
"scipy>=1.15.3",
"seaborn>=0.13.2",
]
[project.urls]
Homepage = "https://github.com/AllenInstitute/ConnectsCommonConnectivity"
[project.scripts]
ccc = "connects_common_connectivity.cli:main"
[project.optional-dependencies]
dev = ["pytest", "ruff", "mypy"]
docs = [
# Core linkml already in main deps; include tooling extensions for docs generation
"mkdocs-material>=9.5.0", # optional if you later adopt MkDocs site
"griffe~=0.42.0", # optional: API doc extraction (remove if unneeded)
"pyarrow>=15.0.0" # for inspecting/aligning Parquet sources
]
[dependency-groups]
# uv specific grouping (optional)
# You can activate extras via `uv pip install -e .[dev]`
docs = []
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 100
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
managed = true
exclude-newer = "7 days"