-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (68 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (68 loc) · 1.91 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "task-allocator"
version = "0.1.0"
description = "Shift-aware task allocation for a multi-skill, multi-language team"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Rahul Chandravanshi", email = "rahulchandravanshi899@gmail.com" }]
keywords = ["scheduling", "allocation", "localization", "workforce", "optimization"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Scheduling",
"Typing :: Typed",
]
dependencies = [
"openpyxl>=3.1",
"typer>=0.12",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6",
"mypy>=1.11",
"pytest>=8.0",
"pytest-cov>=5.0",
"pre-commit>=3.8",
]
[project.scripts]
taskalloc = "task_allocator.cli:app"
[project.urls]
Homepage = "https://github.com/zooman33/task-allocator"
Repository = "https://github.com/zooman33/task-allocator"
Issues = "https://github.com/zooman33/task-allocator/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/task_allocator"]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "C4", "RUF"]
[tool.ruff.lint.per-file-ignores]
# Typer requires function calls (typer.Option/Argument) as parameter defaults.
"src/task_allocator/cli.py" = ["B008"]
[tool.mypy]
python_version = "3.11"
strict = true
files = ["src"]
warn_unused_configs = true
[[tool.mypy.overrides]]
module = ["openpyxl.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.coverage.run]
source = ["src"]
branch = true
[tool.coverage.report]
show_missing = true
fail_under = 70