forked from cxrodgers/autopilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
100 lines (93 loc) · 3.5 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
[tool.poetry]
name = "auto-pi-lot"
version = "0.5.0a0"
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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.7.1,<3.10"
pyzmq = "^22.3.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 = [
{version=">=1.3.0,<1.4.0", python="<3.8"},
{version="^1.4.0", python=">=3.8,<3.10"}
]
tables = "^3.7.0"
cffi = "^1.15.0"
blosc2 = "^0.2.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.12.3", optional = true}
PySide2 = {version = "^5.15.2", optional = true}
Sphinx = {version = "^4.3.1", 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="^0.17.2", 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 = "~=3.3.0", optional = true}
datajoint-babel = {version="^0.1.9", optional = true}
pynwb = {version="^2.0.0,!=2.5.1", optional= true}
pip = {version = "^21.0.0", python="<3.8"}
importlib-metadata = {version = "^4.9.0", python = "<3.8"}
typing-extensions = {version = "^4.1.1", python = "<3.8"}
[tool.poetry.dev-dependencies]
sphinx-autobuild = "^2021.3.14"
[tool.poetry.extras]
pilot = ["pigpio", "JACK-Client"]
terminal = ["pyqtgraph", "PySide2"]
docs = ["Sphinx", "autodocsumm", "matplotlib", "sphinxcontrib-bibtex",
"scikit-learn", "altair", "bokeh", "colorcet", "sphinx-rtd-theme", "sphinx-sass", "pytest", "rich",
"PySide2", "pyqtgraph", "autodoc_pydantic", "myst_parser", "datajoint-babel", "pynwb"]
tests = ["pytest", "pytest-cov", "pylint", "coveralls", "pytest-qt", "pigpio", "PySide2", "pyqtgraph", "rich"]
plotting = ["altair", "bokeh", "colorcet"]
extra_interfaces = ["datajoint-babel", "pynwb"]
[[tool.poetry.source]]
name = "piwheels"
url = "https://www.piwheels.org/simple"
secondary = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"