-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
81 lines (73 loc) · 2.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "simulator-automatic-warehouse"
dynamic = ["version"]
description = 'Simulator and Digital Twin of an Automatic Warehouse.'
readme = "README.md"
requires-python = ">= 3.9"
license = "MIT"
keywords = [
"warehouse",
"automatic warehouse",
"simulator automatic warehouse",
"simulator",
"univr",
"ferretto",
"vertimag",
"digital twin"
]
authors = [
{ name = "Andrea Valentini", email = "andrea.valentini.0000@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Unix"
]
dependencies = [
"pandas==2.2.3",
"simpy==4.1.1",
"PyYAML==6.0.2",
"jsonschema==4.23.0"
]
[project.urls]
Documentation = "https://simulator-automatic-warehouse.readthedocs.io/en/latest/"
PyPI = "https://pypi.org/project/simulator-automatic-warehouse"
GitHub = "https://github.com/AndreVale69/simulator-automatic-warehouse"
Changelog = "https://github.com/AndreVale69/simulator-automatic-warehouse/blob/main/CHANGELOG.md"
Issues = "https://github.com/AndreVale69/simulator-automatic-warehouse/issues"
[tool.hatch.version]
path = "automatic_warehouse/__about__.py"
[tool.hatch.envs.test]
dependencies = [
"pytest",
"pytest-xdist",
"pytest-cov",
"pytest-env"
]
[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
[template.plugins.default]
src-layout = true
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/configuration/univr",
"/docker",
"/docs",
"/tests",
".gitignore",
"CHANGELOG.md",
"run_simulator.py"
]
[tool.hatch.build.targets.wheel]
packages = ["automatic_warehouse", "automatic_warehouse-config", "automatic_warehouse-res"]