-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (58 loc) · 1.42 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "neuro-forge"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "CeCILL-B"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Natural Language :: English",
]
dependencies = [
"fire",
"click",
"rich",
"toml",
"pyaml",
"gitpython",
]
[project.urls]
repository = "https://github.com/neurospin/neuro-forge"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
neuro-forge = "neuro_forge:main"
soma-forge = "neuro_forge.soma_forge.commands:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["recipes"]
[tool.pixi.project]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64"]
[tool.pixi.dependencies]
click ="*"
conda-build = "*"
fire = "*"
git = "*"
gitpython = "*"
pip = "*"
pyaml = "*"
rattler-build = "*"
requests = "*"
rich = "*"
rsync = "*"
toml = "*"
[tool.pixi.pypi-dependencies]
neuro_forge = { path = ".", editable = true }