-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "world_machine"
authors = [
{ name = "Elton Cardoso do Nascimento", email = "e233840@dac.unicamp.br" },
]
description = "Investigating the concept and creation of computational world models."
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
requires-python = ">= 3.10"
dynamic = ["version"]
dependencies = ["torch", "tensordict", "numba"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://h-iaac.github.io/WorldMachine/"
"Bug Tracker" = "https://github.com/H-IAAC/WorldMachine/issues"
# Documentation =
[project.optional-dependencies]
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools_scm]