-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1006 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
[tool.poetry]
name = "regybox"
version = "1.1.0"
description = "Automatically enroll in Regybox CrossFit classes"
authors = ["Martim Lobao <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
beautifulsoup4 = "^4.13.3"
icalendar = "^6.1.1"
python-dotenv = "^1.0.1"
recurring-ical-events = "^3.4.1"
requests = "^2.32.3"
urllib3 = "^2.3.0"
[tool.poetry.group.dev.dependencies]
black = ">=24.1.1"
coverage = ">=7.4.1"
docformatter = ">=1.7.5"
hypothesis = ">=6.97.3"
ipython = ">=8.20.0"
mypy = ">=1.8.0"
pylint = ">=3.0.3"
pytest = ">=8.0.0"
pytest-cov = ">=4.1.0"
ruff = ">=0"
types-beautifulsoup4 = ">=4.12.0.5"
types-pytz = ">=2023.4.0.0"
types-requests = ">=2.31.0.1"
yamllint = ">=1.33.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 99
preview = true
[tool.isort]
profile = "black"
line_length = 99
[tool.docformatter]
recursive = true
style = "google"
wrap-descriptions = 80
wrap-summaries = 80