forked from rootshellz/Beatporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1002 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
54
[tool.poetry]
name = "beatporter"
version = "0.1.0"
description = ""
authors = ["sjgd"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
datetime = "^5.1"
pandas = "^2.0.3"
requests = "^2.31.0"
bs4 = "^0.0.1"
lxml = "^4.9.3"
spotipy = "^2.23.0"
openpyxl = "^3.1.2"
coloredlogs = "^15.0.1"
pytest = "^8.3.4"
google-cloud-storage = "^2.19.0"
ruff = "^0.8.4"
[tool.poetry.extras]
development = ["jupyter", "ipython"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[pytest]
log_cli = true
[tool.ruff]
target-version = "py311"
line-length = 90
select = [
'D', #pydocstyle
'E', 'W', # pycodestyle
'F', #pyflakes
'I', # sort imports
'UP', #pyupgrade
"RUF", # ruff dev's own rules
"SIM", # pyflakes simplicity
"C90", # more complexity rules
]
[tool.mypy]
ignore_missing_imports = true
ignore_missing_stubs = true
disallow_untyped_defs = true
follow_imports = "skip"
disable_error_code = "import-untyped"
no_implicit_optional = true