forked from crnolan/behapy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (23 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
25 lines (23 loc) · 787 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "behapy"
version = "0.0.3"
authors = [{name="Chris Nolan", email="cnolan@gmail.com"}]
description = "Behavioural neuroscience data wrangling and analysis tools"
readme = "README.md"
dependencies = ["pandas"]
requires-python = ">=3.8"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Programming Language :: Python :: 3"
]
[project.scripts]
tdt2bids = "behapy.console:tdt2bids_command"
medpc2csv = "behapy.console:medpc2csv_command"
ppd = "behapy.console:preprocess_dash_command"
preprocess = "behapy.console:preprocess_command"
[project.urls]
"Homepage" = "https://github.com/crnolan/behapy"
"Bug Tracker" = "https://github.com/crnolan/behapy/issues"