-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "redgifs"
dynamic = ["version"]
dependencies = [
"requests>=2.31.0",
"aiohttp>=3.9.0,<4",
]
requires-python = ">= 3.8"
authors = [{name = "scrazzz"}]
description = "Async and Sync Python Wrapper for the RedGIFs API."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["redgifs", "api", "python", "cli", "async", "sync", "aiohttp", "requests"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"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",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
docs = [
"Sphinx==6.0",
"furo==2024.01.29",
]
test = [
"pytest==8.0.0",
]
cli = [
"click>=8",
]
[project.urls]
Documentation = "https://redgifs.rtfd.io/en/stable/"
Repository = "https://github.com/scrazzz/redgifs"
Issues = "https://github.com/scrazzz/redgifs/issues"
Changelogs = "https://redgifs.rtfd.io/en/stable/changelogs.html"
[project.scripts]
redgifs = "redgifs.__main__:cli"
[tool.setuptools.dynamic]
version = {attr = "redgifs.__version__"}
[tool.pyright]
include = [
"redgifs",
"redgifs/types"
]
exclude = [
"**/__pycache__",
"build",
"dist",
"docs",
]
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedImport = "error"
pythonVersion = "3.8"
typeCheckingMode = "basic"