-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.56 KB
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
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "discogs_alert"
version = "0.0.21"
description = "Configurable, real-time alerts for your discogs wantlist"
license = "MIT"
authors = ["mhsb <michael.h.s.ball@gmail.com>"]
homepage = 'https://github.com/michaelhball/discogs_alert'
repository = 'https://github.com/michaelhball/discogs_alert'
keywords = ['discogs', 'dig', 'digger']
include = ["LICENSE"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.11.2"
click = "^8.1.3"
dacite = "^1.8.0"
fake-useragent = "^1.1.1"
freecurrencyapi = "^0.1.0"
pre-commit = "^2.20.0"
psutil = "^5.9.7"
requests = "^2.28.2"
ruff = "^0.0.253"
schedule = "^1.1.0"
selenium = "^4.14.0"
tox = [
{version = "^3", python = "<3.8"}, # because fake-useragent has a importlib-metadata constraint that conflicts
{version = "^4.4.5", python = ">=3.8"}
]
webdriver-manager = "~4"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
pytest-sugar = "^0.9.6"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry2conda]
name = "da"
[tool.pytest.ini_options]
markers = [
"online: marks tests as requiring internet access (select with '--online')",
]
[tool.black]
line-length = 120
[tool.ruff]
select = ["E", "F", "I", "TID", "W"]
exclude = [".git", ".ruff_cache", "dist", "docker", "img"]
fix = false
ignore-init-module-imports = true
line-length = 120
target-version = "py38" # assume Python 3.8 style
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.isort]
combine-as-imports = true
force-single-line = false
order-by-type = false