-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.09 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
[project]
name = "physion"
version = "1.2.1"
authors = [
{ name="Yann Zerlaut", email="[email protected]" },
]
description = "Vision Physiology Software"
readme = "README.md"
requires-python = ">=3.9.5"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"numba",
"scipy",
"matplotlib",
"scikit-image",
"natsort",
"pynwb",
"pandas>=1.4.4",
"pyqt5.sip",
"pyqtgraph",
"pyqtdarktheme",
"opencv-python",
"opencv-contrib-python",
"ffmpeg-python",
"pyqt5",
"openpyxl",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"physion.acquisition.protocols" = ["*.json"]
"physion.acquisition.configs" = ["*.json"]
"physion.acquisition.interventions" = ["*.json"]
"physion.acquisition.subjects" = ["*.xlsx"]
[project.urls]
"Homepage" = "https://github.com/yzerlaut/physion"
"Documentation" = "https://github.com/yzerlaut/physion/README.md"
"Bug Tracker" = "https://github.com/yzerlaut/physion/issues"