generated from tweag/project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (46 loc) · 908 Bytes
/
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "work-daigest"
version = "0.1.0"
description = ""
authors = [
"Nour El Mawass <[email protected]>",
"Simeon Carstens <[email protected]>"
]
readme = "README.md"
packages = [
{ include = "work_daigest" }
]
[tool.poetry.dependencies]
python = "^3.11"
ics = "^0.7.2"
requests = "^2.31.0"
boto3 = "^1.34.37"
botocore = "^1.34.99"
pytz = "^2024.1"
streamlit = "^1.30.0"
python-dateutil = "^2.9.0.post0"
[tool.poetry.scripts]
work-daigest = "work_daigest:main.main"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.12.0"
ruff = "^0.0.290"
fawltydeps = "^0.13.1"
[tool.isort]
profile = "black"
[tool.ruff]
select = ["F", "I", "PD"]
[tool.fawltydeps]
ignore_unused = [
"jupyter",
"notebook",
"black",
"isort",
"fawltydeps",
"mypy",
"pylint",
"ruff",
]