-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (46 loc) · 1.77 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
49
50
[build-system]
requires = ["setuptools>=62.3.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ayt-api"
authors = [
{ name="Revnoplex", email="[email protected]" },
]
description = "A basic, asynchronous, object-oriented YouTube API wrapper written in Python."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.md"}
keywords = [
"api", "youtube", "async", "asyncio", "aiohttp", "object-oriented", "object oriented", "youtube api", "youtube-api",
"wrapper", "youtube api wrapper", "youtube-api-wrapper", "api wrapper", "api-wrapper", "wrapper-api", "wrapper api",
"wrapper library", "wrapper-library"
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://ayt-api.revnoplex.xyz"
"Repository" = "https://github.com/Revnoplex/ayt-api"
"Bug Tracker" = "https://github.com/Revnoplex/ayt-api/issues"
"Changelog" = "https://github.com/Revnoplex/ayt-api/blob/main/CHANGELOG.md"
"Documentation" = "https://ayt-api-docs.revnoplex.xyz"
[tool.setuptools]
packages = ["ayt_api"]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "ayt_api.__version__"}
dependencies = {file = "requirements.txt"}