-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.16 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
[tool.poetry]
name = "saucenaopie"
version = "1.3.3"
description = "Modern and easy-to-use Python implementation for the SauceNao API, with Pydantic and full asyncio support."
authors = ["WhiteMemory99 <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/WhiteMemory99/saucenaopie"
repository = "https://github.com/WhiteMemory99/saucenaopie"
keywords = ["saucenao"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.22.0"
pydantic = "^1.9.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = "^22.3.0"
isort = "^5.10.1"
pytest = "^7.1.2"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
line_length = 99
known_third_party = ["pydantic", "httpx"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"