-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
101 lines (94 loc) · 3.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[tool.poetry]
name = "auto-pi-lot"
version = "0.5.1"
description = "Distributed behavioral experiments"
authors = ["Jonny Saunders <[email protected]>"]
license = "MPL-2.0"
packages = [
{ include = "autopilot" }
]
include = ['autopilot/setup/welcome_msg.txt']
readme = "README.md"
homepage = "https://docs.auto-pi-lot.com"
repository = "https://github.com/auto-pi-lot/autopilot"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pyzmq = ">=25.0.0"
npyscreen = "^4.10.5"
tornado = "^6.1.0"
inputs = "^0.5"
requests = ">=2.26.0"
scikit-video = ">=1.1.11"
tqdm = ">=4.62.3"
numpy = "^1.20.0"
scipy = ">=1.7.0"
pandas = ">=1.4.0"
tables = ">=3.9.0"
cffi = "^1.15.0"
blosc2 = ">=2.4.0"
pydantic = "^1.9.0"
parse = "^1.19.0"
rich = "^11.2.0"
validators = "^0.18.2"
JACK-Client = {version = "^0.5.3", optional = true}
pigpio-autopilot = {version = "^1.79", optional=true}
pyqtgraph = {version = "^0.13.3", optional = true}
PySide6 = {version = ">=6.6.1", optional = true}
Sphinx = {version = "^6.0.0", optional = true}
autodocsumm = {version = "^0.2.7", optional = true}
matplotlib = {version = "^3.5.1", optional = true}
sphinxcontrib-bibtex = {version = "^2.4.1", optional = true}
scikit-learn = {version = "^1.0.1", optional = true}
altair = {version = "^4.1.0", optional = true}
bokeh = {version = "^2.4.2", optional = true}
colorcet = {version = "^3.0.0", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
autodoc_pydantic = {version="^1.7.0", optional=true}
myst_parser = {version="^3.0.0", optional = true}
pytest = {version = "^7.0.0", optional = true}
pytest-cov = {version = "^3.0.0", optional = true}
pylint = {version = "^2.12.2", optional = true}
coveralls = {version = "^3.3.1", optional = true}
pytest-qt = {version = ">=4.3.0", optional = true}
pynwb = {version="^2.0.0,!=2.5.1", optional= true}
pytest-mock = {version = "^3.14.0", optional = true}
[tool.poetry.dev-dependencies]
sphinx-autobuild = "^2021.3.14"
[tool.poetry.extras]
pilot = ["pigpio", "JACK-Client"]
terminal = ["pyqtgraph", "PySide6"]
docs = ["Sphinx", "autodocsumm", "matplotlib", "sphinxcontrib-bibtex",
"scikit-learn", "altair", "bokeh", "colorcet", "sphinx-rtd-theme", "sphinx-sass", "pytest", "rich",
"PySide6", "pyqtgraph", "autodoc_pydantic", "myst_parser", "pynwb"]
tests = [
"pytest", "pytest-cov", "pylint", "coveralls", "pytest-qt", "pytest-mock",
"pigpio", "PySide6", "pyqtgraph", "rich"
]
plotting = ["altair", "bokeh", "colorcet"]
extra_interfaces = ["datajoint-babel", "pynwb"]
[[tool.poetry.source]]
name = "pypi"
priority = "default"
[[tool.poetry.source]]
name = "piwheels"
url = "https://www.piwheels.org/simple"
priority = "supplemental"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"