-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.27 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
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name="pybehave"
version="1.0.19"
authors=[
{ name="Evan Dastin-van Rijn", email="[email protected]"},
{ name="Joel Nielsen", email="[email protected]"},
{ name="Alik Widge", email="[email protected]"}
]
description="Pybehave"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"msgspec",
"pygame",
"screeninfo",
"PyQt5",
"psutil"
]
[project.optional-dependencies]
full = ["pyzmq", "pywin32", "opencv-python", "imutils", "qasync", "pyserial", "nidaqmx", "hikload", "matplotlib"]
oe = ["pyzmq"]
whisker = ["pywin32"]
video = ["opencv-python", "imutils", "qasync"]
serial = ["pyserial"]
ni = ["nidaqmx"]
hikvision = ["hikload"]
bo = ["matplotlib"]
[project.urls]
"Homepage" = "https://github.com/tne-lab/py-behav-box-v2"
"Bug Tracker" = "https://github.com/tne-lab/py-behav-box-v2/issues"
"Documentation" = "https://py-behav-box-v2.readthedocs.io/en/latest/"
[project.scripts]
pybehave = "pybehave:pybehave"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include=["pybehave*"]
exclude = ["paper*"]