-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 1.74 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
[project]
name = "timedatamodel"
version = "0.3.0"
description = "A lightweight data model for time series data with pandas, numpy, and polars support"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [
{ name = "Rebase Energy", email = "[email protected]" }
]
keywords = ["time series", "data model", "pandas", "numpy", "polars", "energy"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dependencies = [
"polars>=1.0",
]
[project.urls]
Homepage = "https://github.com/rebase-energy/TimeDataModel"
Repository = "https://github.com/rebase-energy/TimeDataModel"
Issues = "https://github.com/rebase-energy/TimeDataModel/issues"
[project.optional-dependencies]
pandas = ["pandas>=2.0", "pyarrow>=14.0"]
pint = ["pint>=0.24"]
geo = ["shapely>=2.0"]
all = ["pandas>=2.0", "pyarrow>=14.0", "pint>=0.24", "shapely>=2.0", "numpy>=1.24"]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pre-commit>=4.0",
"pandas>=2.0",
"pyarrow>=14.0",
"pint>=0.24",
"shapely>=2.0",
"numpy>=1.24",
"polars>=1.0",
]
docs = [
"sphinx>=7.4",
"myst-parser>=3.0",
"sphinx-rtd-theme>=3.0",
"sphinx-autodoc-typehints>=2.3",
"nbsphinx>=0.9",
"ipykernel>=6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["timedatamodel"]
[tool.coverage.report]
show_missing = true
skip_empty = true