-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.26 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
55
56
[tool.poetry]
name = "spoffy"
version = "1.0.1"
description = "Spotify API client with async and sync support"
authors = ["Steinthor Palsson <[email protected]>"]
readme = 'README.md'
license = 'Apache-2.0'
homepage = 'https://github.com/steinitzu/spoffy'
repository = 'https://github.com/steinitzu/spoffy'
documentation = 'https://spoffy.readthedocs.io'
keywords = [
'spotify',
'api-client',
'async',
'sans-io',
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.9"
urlobject = "^2"
typing-extensions = "^4.9.0"
[tool.poetry.group.dev.dependencies]
snapshottest = "^0.6.0"
pluggy = "^1.4.0"
types-requests = "^2.31.0.20240125"
pytest = "^7.0"
flake8 = "^3.6"
mypy = "^1"
black = "^22"
pytest-cov = "^4.0"
sphinx = "^1.8"
sphinx-autodoc-typehints = "^1.6"
sphinx_rtd_theme = "^0.4.3"
aiohttp = "^3.9"
requests = "^2.21"
astor = "^0.8"
pytest-asyncio = "^0.23.4"
sphinxcontrib-asyncio = "^0.2.0"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"