-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.33 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
# SPDX-License-Identifier: MIT
# Copyright (C) 2021-2022 Amano Team <https://amanoteam.com/> and the python-anilist contributors
[project]
name = "python-anilist"
version = "1.1.0"
description = "A simple wrapper with full support for asyncio made in Python 3 for Anilist using httpx."
readme = "README.md"
authors = [{ name = "Andriel Ferreira", email = "[email protected]" }]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"httpx[http2]",
]
requires-python = ">=3.8"
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
tracker = "https://github.com/AmanoTeam/python-anilist/issues"
source = "https://github.com/AmanoTeam/python-anilist"
[tool.setuptools.package-data]
anilist = ["py.typed", "*.graphql"]
[tool.rye]
dev-dependencies = [
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]