-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (86 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (86 loc) · 2.07 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
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nrv-py"
version = "1.4.0"
description = "NeuRon Virtualizer (NRV)"
readme = "ReadMe.md"
license = "CECILL-C"
authors = [
{ name = "Florian Kolbl" },
{ name = "Roland Giraud" },
{ name = "Louis Regnacq" },
{ name = "Thomas Couppey" },
{ name = "Maroua Kolbl Hammami" },
{ name = "Jaderson Polli"}
]
requires-python = ">=3.12"
dependencies = [
"icecream",
"matplotlib",
"mph",
"neuron",
"numpy",
"pandas",
"pathos",
"psutil",
"pyeit",
"pyswarms",
"rich",
"scipy",
"seaborn",
"shapely",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Natural Language :: English",
]
[project.urls]
homepage = "https://nrv-framework.org"
documentation = "https://nrv.readthedocs.io"
repository = "https://github.com/nrv-framework/NRV"
[project.optional-dependencies]
dev = [
"black",
"build",
"flake8",
"furo",
"mypy",
"pre-commit",
"Pygments",
"pytest >=7.0",
"pytest-cov",
"sphinx",
"sphinx_codeautolink",
"sphinx_copybutton",
"sphinx_gallery",
"sphinx-mdinclude",
"sphinx-rtd-theme",
]
# ----------------------------
# Setuptools specific part
# ----------------------------
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["nrv*"]
[tool.setuptools.package-data]
"nrv._misc" = ["NRV.ini"]
"nrv._misc.comsol_templates" = ["*.mph"]
"nrv._misc.geom" = ["*.dxf", "*.png"]
"nrv._misc.log" = ["NRV.log"]
"nrv._misc.materials" = ["*.mat"]
"nrv._misc.mods" = ["*.mod"]
"nrv._misc.pops" = ["*.pop"]
"nrv._misc.ppops" = ["*.ppop"]
"nrv._misc.stats" = ["*.csv"]