-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (34 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
43 lines (34 loc) · 950 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blnetwork"
version = "0.1.1"
description = "Behavior Learning (BL): Learning Hierarchical Optimization Structures from Data"
readme = "README.md"
requires-python = ">=3.10.9"
license = { file = "LICENSE" }
authors = [
{ name = "Yue Liang", email = "yue.liang@student.uni-tuebingen.de" }
]
dependencies = [
"torch>=2.2",
"numpy>=1.26",
"pandas>=2.1"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/MoonYLiang/Behavior-Learning"
Issues = "https://github.com/MoonYLiang/Behavior-Learning/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["blnetwork*"]
exclude = ["__pycache__*"]