-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (105 loc) · 2.58 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (105 loc) · 2.58 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["setuptools>=65.5.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graph-jsp-env"
version = "1.1.1"
description = "A flexible enviorment for job shop scheduling using the disjunctive graph apporach."
readme = "README.md"
authors = [{ name = "Alexander Nasuta", email = "alexander.nasuta@ima.rwth-aachen.de" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = []
dependencies = [
"rich",
"opencv-python",
"plotly",
"networkx>=3",
"matplotlib",
"numpy",
"pandas",
"kaleido",
"gymnasium"
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"bumpver",
"pip-tools",
"pytest",
"pytest-cov",
"mypy",
"flake8",
"stable_baselines3",
"tox",
# for docs with sphinx
"sphinx",
"myst-parser", # .md support for sphinx
"sphinx-autobuild",
"furo", # cool theme
"twine",
"sphinx-copybutton", # for code copy buttons
"sphinxcontrib-bibtex", # for bibtex support
"sphinxcontrib.tikz", # for tikz support
"sphinxcontrib-jsmath", # for math support
"nbsphinx", # for jupyter notebook support in sphinx
# for examples
"sb3_contrib",
# for converting examples to notebooks
"jupytext",
"notebook",
"typing_extensions>=4.12.0",
]
[project.urls]
Homepage = "https://github.com/Alexander-Nasuta/graph-jsp-env"
[tool.pytest.ini_options]
addopts = "--cov=graph_jsp_env -p no:warnings"
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true
# auto generated with bumpver inint
#
# [tool.bumpver]
# current_version = "2022.1001-alpha"
# version_pattern = "YYYY.BUILD[-TAG]"
# commit_message = "bump version {old_version} -> {new_version}"
# commit = true
# tag = true
# push = true
[tool.bumpver]
current_version = "1.0.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"setup.py" = [
"{version}",
"{pep440_version}",
]
"README.md" = [
"{version}",
"{pep440_version}",
]