-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·50 lines (44 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
executable file
·50 lines (44 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cxutils" # Distribution name (PyPI name)
dynamic = ["version"]
description = "cxutils: utility functions for pycortex"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Jurjen Heij", email = "jurjenheij@gmail.com" }]
maintainers = [{ name = "Jurjen Heij", email = "jurjenheij@gmail.com" }]
keywords = ["visualization", "neuroimaging"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8"
dependencies = [
"lazyfmri @ git+https://github.com/gjheij/lazyfmri.git",
"fmriproc @ git+https://github.com/gjheij/fmriproc.git",
"pycortex",
"imageio",
"nibabel",
"numpy",
"configparser",
"matplotlib",
"scipy",
"pandas",
]
[project.optional-dependencies]
dev = ["pytest", "black", "flake8"]
[tool.setuptools_scm]
write_to = "cxutils/version.py"
[tool.setuptools.packages.find]
include = ["cxutils*"]
[tool.setuptools.package-data]
cxutils = ["version.py"]
[tool.setuptools.data-files]
"bin" = ["bin/*"]