-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (81 loc) · 1.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"hatchling",
"setuptools",
"wheel",
"swig>=4.0",
"setuptools>=45"
]
build-backend = "setuptools.build_meta"
[project]
name = "vbi"
version = "0.1.3"
description = "Virtual brain inference."
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Abolfazl Ziaeemehr", email = "[email protected]" },
{ name = "Meysam Hashemi", email = "[email protected]" },
{ name = "Marmaduke Woodman", email = "[email protected]" }
]
readme = "README.md"
dependencies = [
"wheel",
"numpy",
"scipy",
"numba",
"h5py",
"pandas",
"networkx",
"nbconvert",
"matplotlib",
"setuptools-scm",
"tqdm",
"sbi",
"torch",
"parameterized",
"scikit-learn",
"pycatch22",
"pytest",
"swig",
"rich"
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
homepage = "https://ziaeemehr.github.io/vbi_paper/"
repository = "https://github.com/Ziaeemehr/vbi_paper"
[tool.hatch.version]
path = "vbi/_version.py"
include-package-data = true
[tool.setuptools.package-data]
vbi = [
"models/pytorch/data/*",
"models/cpp/_src/*",
]
"vbi.tests" = ["*"] # Include all files in tests/
[project.optional-dependencies]
dev = []
docs = [
"sphinx",
"numpydoc",
"nbformat",
"nbsphinx",
"cloud_sptheme",
"sphinx_bootstrap_theme",
]
cu = ["cupy"]
all = [
"pytest",
"sphinx",
"numpydoc",
"nbformat",
"nbsphinx",
"cloud_sptheme",
"sphinx_bootstrap_theme",
"cupy",
]