-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.3 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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "userlist-python"
version = "0.0.0"
description = "Python client for the Userlist API"
homepage = "https://github.com/userlist/userlist-python"
repository = "https://github.com/userlist/userlist-python"
authors = [
"Benedikt Deicke <benedikt@userlist.com>",
"Maksym Sugonyaka <maksym@newscatcherapi.com>"
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "userlist", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8"
requests = ">=2.31.0"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.0"
pytest-cov = ">=4.1.0"
pytest-mock = ">=3.11.1"
black = ">=23.9.1"
responses = ">=0.25.0"
[tool.pytest.ini_options]
addopts = "--cov=userlist"
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py38"]
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"