-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 803 Bytes
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
[tool.poetry]
name = "xerparser"
version = "0.13.9"
description = "Parse a P6 .xer file to a Python object."
authors = ["Jesse <code@seqmanagement.com>"]
license = "GPL-3.0-only"
readme = "README.md"
keywords = ["primavera", "p6", "xer", "schedule", "scheduling", "planning", "project management", "project controls"]
repository = "https://github.com/jjCode01/xerparser"
[tool.poetry.dependencies]
python = "^3.11"
html-sanitizer = "^2.2.0"
[tool.poetry.group.test.dependencies]
tqdm = "^4.64.1"
python-dateutil = "^2.8.2"
[tool.poetry.scripts]
test = 'scripts:test'
parse_test = 'scripts:parse_test'
calc_rem_hours_test = 'scripts:rem_hours_per_day_test'
test_task_rsrc_compare = 'scripts:test_task_rsrc_compare'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"