-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.08 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"cmake>=3.14",
"ninja",
]
build-backend = "setuptools.build_meta"
[project]
name = "hydra_python"
authors = [
{name = "Nathan Hughes", email="[email protected]"},
]
description = "Python bindings for Hydra"
readme = "README.md"
version = "0.0.1"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
]
requires-python = ">=3.8"
dependencies = [
"click",
"distinctipy",
"imageio",
"networkx",
"numpy",
"pyqtgraph",
"pyyaml",
"scipy",
"tqdm",
"spark_dsg[viz] @ git+https://github.com/MIT-SPARK/Spark-DSG@develop"
]
[project.urls]
Repository = "https://github.com/MIT-SPARK/Hydra"
[project.scripts]
hydra = "hydra_python.commands:main.cli"
[tool.setuptools]
include-package-data = true
packages = [
"hydra_python",
"hydra_python.config",
"hydra_python.commands",
"hydra_python.semantics",
"hydra_python.simulators",
]
[tool.setuptools.package-dir]
"hydra_python" = "python/src/hydra_python"
"hydra_python.config" = "config"