-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (59 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
71 lines (59 loc) · 1.27 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
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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'lineflow-rl'
authors = [
{ name = 'Kai Müller', email = 'kai.mueller@hs-kempten.de' },
{ name = 'Martin Wenzel', email = 'martin.wenzel@stud.hs-kempten.de' },
{ name = 'Tobias Windisch', email = 'tobias.windisch@hs-kempten.de' },
]
maintainers = [
{ name = 'Tobias Windisch', email = 'tobias.windisch@hs-kempten.de' },
]
description = 'Python tool to simulate assembly lines.'
readme = "README.md"
dynamic = ['version']
requires-python = "<3.14"
dependencies = [
'pandas',
'scipy',
'simpy',
'numpy<2.0.0',
'matplotlib',
'pygame',
'torch',
'wandb',
'tqdm',
'stable_baselines3',
'sb3-contrib',
'gekko',
]
[project.optional-dependencies]
dev = [
'pytest',
'pytest-cov',
'mkdocs',
'mkdocs-material',
'mkdocstrings-python',
'mike',
'ruff',
'debugpy',
]
[tool.setuptools.packages.find]
include = ['lineflow*']
[tool.setuptools.dynamic]
version = { file = 'VERSION' }
[tool.ruff]
select = [
'E', # pycodestyle
'F', # pyflakes
'UP', # pyupgrade
'D', # pydocstyle
'PL', # pylint
]
line-length = 120
[tool.ruff.pydocstyle]
convention = 'google'
[tool.ruff.mccabe]
max-complexity = 5