-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.8 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
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "veedb"
dynamic = ["version"]
description = "An asynchronous Python wrapper for the VNDB API (Kana)."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Sub01", email = "Sub01@subsoft.dev"},
]
maintainers = [
{name = "Sub01", email = "Sub01@subsoft.dev"},
]
keywords = ["vndb", "visual novel", "api", "async", "wrapper"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment",
"Framework :: AsyncIO",
"Development Status :: 4 - Beta",
]
requires-python = ">=3.8"
dependencies = [
"aiohttp>=3.8.0,<5.0.0",
"dacite>=1.6.0,<2.0.0",
"orjson>=3.0.0",
]
[project.urls]
Homepage = "https://github.com/Sub0X/veedb"
Repository = "https://github.com/Sub0X/veedb"
Documentation = "https://veedb.readthedocs.io/en/latest/"
"Bug Tracker" = "https://github.com/Sub0X/veedb/issues"
Changelog = "https://veedb.readthedocs.io/en/latest/changelog.html"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
veedb = ["py.typed", "VERSION"]
[tool.setuptools.dynamic]
version = {file = "src/veedb/VERSION"}
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.21.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"