-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (60 loc) · 1.43 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
[project]
name = "psplib"
version = "0.4.0a"
description = "A parser for project scheduling instances."
authors = [
{ name = "Leon Lan", email = "[email protected]"},
]
license = { text = "MIT License" }
readme = "README.md"
keywords = [
"scheduling",
"psplib",
"project scheduling",
]
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 = []
[project.urls]
Repository = "https://github.com/PyJobShop/PSPLIB"
[dependency-groups]
dev = [
"numpy>=1.26.0",
"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"