-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (47 loc) · 1.09 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
[tool.poetry]
name = "optimal-congress"
version = "0.7.4"
description = "CLI to find an optimal, personal schedule for the 37c3 congress."
homepage = "https://github.com/top-on/optimal-congress"
authors = ["top-on <[email protected]>"]
readme = "README.md"
packages = [{ include = "optimal_congress" }]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.1.4"
pandera = "^0.18.0"
pulp = "^2.7.0"
pydantic = "^2.5.2"
pytz = "^2023.3.post1"
requests = "^2.31.0"
typer = { extras = ["all"], version = "^0.9.0" } # extras include rich
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.1"
notebook = "^7.0.7"
ruff = "^0.1.6"
mypy = "^1.7.1"
pytest = "^7.4.3"
pre-commit = "^3.6.0"
types-requests = "^2.31.0.10"
types-pytz = "^2023.3.1.1"
tox = "^4.11.4"
[tool.poetry.scripts]
optimal-congress = "optimal_congress.cli:app"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
fix = true
line-length = 88
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"