-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Cerebro_Viewer"
version = "0.0.10.5"
authors = [
{ name="Sina Mansour L.", email="[email protected]" },
]
description = "Cerebro Viewer - A pythonic 3D viewer to visualize and plot brains"
readme = "README.md"
keywords = ["3D", "Brain Viewer"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy>=1.19',
'matplotlib',
'scipy',
'nibabel',
'trimesh',
'Panda3D',
'scikit-image',
]
[project.urls]
"Homepage" = "https://github.com/sina-mansour/Cerebro_Viewer"
"Documentations" = "https://cerebro-viewer.readthedocs.io"
"Bug Tracker" = "https://github.com/sina-mansour/Cerebro_Viewer/issues"
[project.optional-dependencies]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["code"]
[tool.setuptools.package-data]
data = ["**"]