-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (90 loc) · 2.83 KB
/
pyproject.toml
File metadata and controls
101 lines (90 loc) · 2.83 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "cython>=3.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "scriptplan"
version = "0.9.2"
description = "A precise project scheduling engine with minute-level accuracy for resource allocation and dependency management."
authors = [
{ name = "Farshid Ashouri", email = "[email protected]" },
]
maintainers = [
{ name = "Farshid Ashouri", email = "[email protected]" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
keywords = ["scheduling", "project-management", "resource-allocation", "gantt", "critical-path"]
dependencies = [
"lark>=1.0.0",
"python-dateutil>=2.8.0",
"click>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-xdist>=3.0.0",
"pandas>=1.5.0",
"types-python-dateutil>=2.8.0",
"types-pytz>=2022.1.0",
"build",
"twine",
"ruff>=0.1.0",
"mypy>=1.0.0",
"cython>=3.0.0",
]
[project.scripts]
scriptplan = "scriptplan.cli.main:main"
plan = "scriptplan.cli.plan:main"
[project.urls]
"Homepage" = "https://github.com/rodmena-limited/scriptplan"
"Documentation" = "https://github.com/rodmena-limited/scriptplan#readme"
"Bug Tracker" = "https://github.com/rodmena-limited/scriptplan/issues"
"Source" = "https://github.com/rodmena-limited/scriptplan"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["scriptplan*"]
[tool.setuptools.package-data]
scriptplan = ["py.typed", "parser/*.lark", "_cython/*.pyx"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short -n auto"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM", "RUF"]
# N rules ignored: codebase uses camelCase for TaskJuggler API compatibility
ignore = ["E501"] # Line length handled separately
[tool.mypy]
python_version = "3.9"
strict = true
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true