-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.37 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
[project]
name = "rmp"
dynamic = ["version"]
[tool.poetry]
description = "Analyze team performance for better predictability"
authors = ["Ergo Sarapu"]
readme = "README.md"
license = "MIT"
packages = [
{ include = "rmp", from = "src" },
]
version = "0.0.0"
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.2"
tqdm = "^4.66.6"
requests = "^2.32.3"
sqlalchemy = "^2.0.37"
datetimerange = "^2.3.1"
pytz = "^2025.1"
eventsourcing = "^9.3.5"
eventsourcing-sqlalchemy = "^0.10"
typing-extensions = "^4.13.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
requests-mock = "^1.9.3"
pytest-mock = "^3.7.0"
PyYAML = "^6.0"
pylint = "^3.3.1"
matplotlib = "^3.9.2"
mypy = "^1.15.0"
ruff = "^0.11.2"
types-pytz = "^2025.2.0.20250326"
types-requests = "^2.32.0.20250328"
types-tqdm = "^4.67.0.20250319"
pandas-stubs = "^2.3.0.250703"
ipykernel = "^6.29.5"
jinja2 = "^3.1.6"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.mypy]
files = ["src", "tests"]
strict = true
disallow_untyped_decorators = false
[tool.poetry-dynamic-versioning]
enable = true
format-jinja = "{{base}}{% if major == 0 and minor == 0 and patch == 0 and distance > 0 %}.post{{ timestamp }}{% endif %}"