-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1.04 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
[project]
name = "ts4ps"
version = "0.1.0"
description = "Time Series reconstruction for Power Systems"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"black==25.1.0",
"click==8.1.8",
"dash>=3.2.0",
"fuzzywuzzy==0.18.0",
"geopandas>=1.0.1",
"highspy==1.9.0",
"levenshtein==0.26.1",
"matplotlib-inline==0.1.7",
"networkx==3.4.2",
"numpy==2.2.3",
"ortools==9.12.4544",
"pandas==2.2.3",
"plotly>=6.1.0",
"pyarrow>=20.0.0",
"pypowsybl==1.10.0",
"python-dateutil==2.9.0.post0",
"python-levenshtein==0.26.1",
"pytz==2025.1",
"pyzmq==26.2.0",
"rapidfuzz==3.12.1",
"requests==2.32.3",
"ruff>=0.12.1",
"scipy>=1.16.2",
"shapely>=2.1.1",
"typer>=0.16.0",
"urllib3==2.3.0",
]
[tool.ruff]
# In addition to the standard set of exclusions, omit all tests, plus a specific file.
extend-exclude = ["etc", ".csv"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipykernel>=6.30.1",
"pip>=25.2",
]