-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
43 lines (41 loc) · 1.37 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
[project]
name = "rule34Py"
description = "API wraper for rule34.xxx"
version = "2.0.0"
license = {file = "LICENSE"}
readme = "README.md"
keywords = [ "rule34.xxx", "adult", "nsfw", "rule34-pi", "api-client" ]
authors = [
{ name = "MiningXL", email = "[email protected]" },
{ name = "b3yc0d3", email = "[email protected]" },
{ name = "Tal A. Baskin", email = "[email protected]" },
{ name = "ripariancommit", email = "[email protected]" }
]
requires-python = ">=3.5"
maintainers = [
{ name = "b3yc0d3", email = "[email protected]" }
]
dependencies = [
"beautifulsoup4 >= 4.9.3",
"requests >= 2.27.1",
"lxml >= 4.6.4"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
[project.urls]
Issues = "https://github.com/b3yc0d3/rule34Py/issues"
Repository = "https://github.com/b3yc0d3/rule34Py"
Documentation = "https://github.com/b3yc0d3/rule34Py/tree/master/docs"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"