-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 745 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 745 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
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "AppleWatchAI"
version = "0.0.0"
description = ""
authors = ["Anas Suffo <anassaffo@gmail.com>"]
repository = "https://github.com/ansuff/AppleWatchAI"
readme = "README.md"
packages = [{include = "awai", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
pandera = "*"
pydantic = "*"
fire = "*"
dynaconf = "*"
pandas = "*"
xmltodict = "*"
duckdb = "*"
loguru = "*"
[tool.poetry.group.testing.dependencies]
pytest = "*"
[tool.poetry.group.dev.dependencies]
ipykernel = "*"
jupytext = "*"
pre-commit = "*"
plotly = "*"
pytest-xdist = "*"
[tool.jupytext]
formats = "ipynb,py:percent"
[tool.ruff.lint]
extend-select = ["I"]
[build-system]
requires = ["poetry-core==1.8.2"]
build-backend = "poetry.core.masonry.api"