-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.36 KB
/
pyproject.toml
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
[tool.poetry]
name = "ubc-solar-data-tools"
description = "UBC Solar's data analysis and querying tools"
authors = ["Joshua Riefman <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "data_tools" }
]
version = "0.0.0" # DO NOT MODIFY
[tool.poetry.dependencies]
python = "^3.10"
influxdb-client = "^1.45.0"
python-dotenv = "^1.0.1"
sqlalchemy = "^2.0.5"
psycopg2-binary = "^2.9.9"
pandas = "^2.2.3"
numpy = "^2.0.1"
scipy = "^1.14.1"
matplotlib = "3.*"
pytz = "^2024.2"
pydantic = "^2.9.2"
dill = "^0.3.9"
requests = "^2.32.3"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[tool.poetry.group.docs.dependencies]
myst-parser = "^4.0.0"
pydata-sphinx-theme = "^0.15.4"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.cibuildwheel]
archs = "auto" # Automatically detects architectures (e.g., x86, ARM)
skip = ["pp*", "*-musllinux_*", "*-win32"] # Skip PyPy (only want CPython), Musllinux, win32 wheels
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"
manylinux-aarch64-image = "manylinux2014"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.1"]
build-backend = "poetry_dynamic_versioning.backend"