-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (61 loc) · 1.44 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
[project]
name = "fjsplib"
version = "0.0.1"
description = "Python package to read and write FJSP instances."
authors = [
{ name = "Leon Lan", email = "l.lan@vu.nl"},
]
license = { text = "MIT License" }
readme = "README.md"
keywords = [
"scheduling",
"flexible job shop scheduling",
"fjsp",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.26.0",
]
[project.urls]
Repository = "https://github.com/PyJobShop/FJSPLIB"
[dependency-groups]
dev = [
"pre-commit>=3.8.0",
"pytest>=8.3.2",
]
[tool.uv]
default-groups = ["dev"]
[tool.mypy]
ignore_missing_imports = true
[tool.black]
line-length = 79
[tool.ruff]
line-length = 79
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E741", # ambiguous variable name, needed for indexing
"C901", # too complex
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # ignore unused module imports
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"