-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
70 lines (64 loc) · 1.55 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "quantifiedme"
version = "0.1.0"
description = ""
authors = ["Erik Bjäreholt <erik@bjareho.lt>"]
license = "MPL-2.0"
packages = [
{ include = "quantifiedme", from = "src" },
]
[tool.poetry.scripts]
quantifiedme = "quantifiedme.main:main"
[tool.poetry.dependencies]
python = "^3.10, <3.12" # scipy has a <3.12 constraint
aw-core = "^0.5.16"
aw-client = "^0.5"
aw_research = {git = "https://github.com/ActivityWatch/aw-research.git"}
#aw_research = {path = "/Users/erb/Programming/activitywatch/other/aw-research", develop=true}
qslang = {path = "./QSlang", develop=true}
numpy = "*"
scipy = ">=1.10"
#bottleneck = "1.2.3"
pandas = "*"
pandas-profiling = "*"
matplotlib = "*"
calplot = "^0.1" # fork of calmap
joblib = "*"
tabulate = "*"
pint = "*"
toml = "*"
#togglcli = "*"
#togglcli = {path = "vendor/toggl-cli"}
statsmodels = "*"
types-click = "*"
types-toml = "*"
influxdb-client = {version = "*", optional = true}
nbval = "*"
gradio = "^4.36.1"
[tool.poetry.group.dev.dependencies]
jupyterlab = "*"
ipykernel = "*"
pytest = "*"
pytest-cov = "*"
pytest-xdist = "*"
pytest-profiling = "*"
#pytest_notebook = "*"
flake8 = "*"
mypy = "*"
black = "*"
ipympl = "*"
pyupgrade = "*"
ruff = "*"
pandas-stubs = "^2.1.1.230928"
[tool.pytest.ini_options]
minversion = "6.0"
filterwarnings = ["ignore::DeprecationWarning",]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.pyright]
strictParameterNoneValue = false
pythonVersion = "3.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"