forked from b3yc0d3/rule34Py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.12 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
[tool.poetry]
name = "pyrule34"
version = "1.1.0"
description = "Asynchronous wrapper for rule34.xxx."
authors = ["Hypick122"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Hypick122/pyrule34"
repository = "https://github.com/Hypick122/pyrule34"
documentation = "https://github.com/Hypick122/pyrule34/README.md"
keywords = [
"async rule34",
"rule34 api",
"async",
"asyncio",
"wrapper",
"api"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.8.1"
beautifulsoup4 = "^4.12.2"
lxml = "^4.9.3"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Hypick122/pyrule34/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"