forked from ivoryos-ai/IvoryOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.34 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ivoryos"
dynamic = ["version"] # or dynamically read version with `dynamic = ["version"]`
description = "an open-source Python package enabling Self-Driving Labs (SDLs) interoperability"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "Ivory Zhang", email = "ivoryzhang@chem.ubc.ca"}
]
dependencies = [
"bcrypt",
"Flask[async]",
"Flask-Login",
"Flask-Session",
"Flask-SocketIO",
"Flask-SQLAlchemy",
"Flask-WTF",
"SQLAlchemy-Utils",
"python-dotenv",
"pandas",
"astor; python_version < '3.9'"
]
[project.optional-dependencies]
optimizer-ax = ["ax-platform"]
optimizer-baybe = ["baybe"]
optimizer-nimo = ["nimo"]
db = ["psycopg2-binary"]
optimizers = [
"ax-platform>=1.1.2",
"baybe>=0.14.0",
"nimo>=2.0.5"
]
doc = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-httpdomain"
]
dev = ["pytest"]
[project.urls]
Homepage = "https://gitlab.com/heingroup/ivoryos"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
ivoryos = [
"static/**/*",
"templates/**/*",
"routes/**/*"
]
[tool.setuptools.packages.find]
exclude = ["community*"]
[tool.setuptools.dynamic]
version = {attr = "ivoryos.version.__version__"}