-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.04 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "vai_lab"
authors = [
{name = "Chris McGreavy", email = "chris.mcgreavy@aalto.fi"},
{name = "Carlos Sevilla Salcedo", email = "carlos.sevillasalcedo@aalto.fi"}
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.11'
]
requires-python = ">=3.11"
version = "0.0.dev4"
description = "AI assisted Virtual Laboratory framework."
dependencies = [
"numpy >= 1.20.0",
"pillow >= 9.0.0", # package name of PIL
"pandas >= 1.4.0",
"scikit-learn >= 0.0",
"ttkwidgets >= 0.12.0",
"matplotlib >= 3.5.0",
"opencv-python >= 4.6.0.65",
"pybullet >= 3.2.5",
"attrs >= 23.1.0"
]
[project.optional-dependencies]
dev = [
"pytest >= 7.2.0",
"pytest-cov >= 4.0.0"
]
[project.urls]
Source = "https://github.com/AaltoPML/VAI-lab"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
[project.scripts]
vai_lab = "vai_lab.run_pipeline:main"