-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (35 loc) · 984 Bytes
/
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
[project]
name = "bender_study"
description = "Bender Study: Behavioral and neural analysis of overlapping pair learning."
version = "1.0.0"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Neal W Morton", email = "[email protected]"},
{name = "Ellen L Zippi", email = "[email protected]"},
]
keywords = ["fmri", "psychology", "neuroscience", "memory"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
]
urls = {project = "https://github.com/prestonlab/bender_study"}
dependencies = [
"numpy",
"scipy",
"pandas",
"matplotlib",
"seaborn",
"h5py",
"watermark",
"ezlaunch",
"mindstorm",
"pingouin",
"click",
]
[project.scripts]
bender-convert-model = "bender_study.rsa:convert_model"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"