-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (47 loc) · 1.15 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]
authors = ["top-on <[email protected]>"]
description = "CLI to find an optimal, personal schedule for the 38c3 congress."
homepage = "https://github.com/top-on/optimal-congress"
name = "optimal-congress"
packages = [{include = "optimal_congress"}]
readme = "README.md"
version = "1.2.0"
[tool.poetry.dependencies]
pandas = "^2.2.3"
pandera = "^0.21.1"
pulp = "^2.9.0"
pydantic = "^2.10.3"
python = "^3.11"
pytz = "^2024.2"
requests = "^2.32.3"
typer = {extras = ["all"], version = "^0.15.1"}# extras include rich
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
notebook = "^7.0.7"
# linting
mypy = "1.13.0" # keep in sync with .pre-commit-config.yaml
pre-commit = "^4.0.1"
ruff = "0.8.3" # keep in sync with .pre-commit-config.yaml
# testing
pytest = "^7.4.3"
# stubs
types-pytz = "^2024.2"
types-requests = "^2.32"
[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
"I",
]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]