-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
96 lines (92 loc) · 1.72 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
plugins = ["pydantic.mypy"]
ignore_missing_imports = true
[project]
name = "simforge"
version = "0.2.0"
description = "Diverse virtual environments through procedural generation"
authors = [{ name = "Andrej Orsula", email = "orsula.andrej@gmail.com" }]
maintainers = [{ name = "Andrej Orsula", email = "orsula.andrej@gmail.com" }]
urls = { Repository = "https://github.com/AndrejOrsula/simforge", Documentation = "https://AndrejOrsula.github.io/simforge" }
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Games/Entertainment :: Simulation",
]
keywords = ["simulation", "procedural"]
readme = "README.md"
license = { text = "MIT OR Apache-2.0" }
requires-python = ">=3.10"
dependencies = [
## Paths
"platformdirs~=4.0",
## Typing
"pydantic~=2.0",
]
[project.optional-dependencies]
all = [
## Assets
"simforge[assets]",
## Generators
"simforge[bpydev]",
## Utils
"simforge[cli]",
"simforge[dev]",
]
## Assets
assets = [
#
"simforge[foundry]",
]
foundry = [
#
"simforge_foundry",
]
## Generators
bpydev = [
#
"simforge[bpy]",
"fake-bpy-module",
]
bpy = [
#
"bpy~=4.0",
]
## Utils
cli = [
#
"simforge[rich]",
"simforge[repl]",
"argcomplete~=3.0",
]
dev = [
#
"simforge[test]",
"simforge[tracing]",
]
rich = [
#
"rich~=13.0",
]
test = [
#
"pytest~=8.0",
"pytest-order~=1.0",
"pytest-sugar~=1.0",
]
tracing = [
#
"simforge[rich]",
"logfire~=3.0",
]
repl = [
#
"ptpython~=3.0",
]
[project.scripts]
simforge = "simforge.__main__:main"