forked from High-Throughput-Experimentation/helao-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.21 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
[tool.poetry]
authors = ["Matthias Richter <[email protected]>", "Dan Guevarra <[email protected]>", "Michael Statt <[email protected]>"]
description = "The core codebase for the HELAO High Throughoutput Experimentation code base."
name = "helao"
version = "0.2.0"
[tool.poetry.dependencies]
python = "^3.8"
aiofiles = "^0.8"
aiohttp = "^3.8"
bokeh = "^2.4"
boto3 = "^1.23"
botocore = "^1.26"
colorama = "^0.4"
comtypes = "^1.1"
databases = "^0.5"
fastapi = "^0.78"
ipykernel = "^6.13"
munch = "^2.5"
nidaqmx = "^0.6"
ntplib = "^0.4"
numpy = "^1.22"
pandas = "^1.4"
paramiko = "^2.11"
psutil = "^5.9"
pyaml = "^21.10"
pybase64 = "^1.2"
pydantic = "^1.9"
pyfiglet = "^0.8"
requests = "^2.27"
"ruamel.yaml" = "^0.17"
shortuuid = "^1.0"
sqlalchemy = "^1.4"
starlette = "^0.19"
termcolor = "^1.1"
uvicorn = "^0.17"
websockets = "^10.3"
aioshutil = "^1.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["src"]
exclude = ["**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs"
]
reportOptionalMemberAccess = false
reportGeneralTypeIssues = false