forked from Bluenix2/discord-typings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.56 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
[project]
name = "discord-typings"
version = "0.6.0"
description = "Python typings of payloads that Discord sends"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [{name = "Bluenix", email = "[email protected]"}]
keywords = [
"discord", "discord-api", "discord-api-wrapper", "python-3", "typing"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
# Generic TypedDicts were first added in 4.3, but possible on Python 3.9 and
# 3.10 back in 4.2
dependencies = ["typing_extensions >= 4.3, <5"]
[project.urls]
Homepage = "https://github.com/Bluenix2/discord-typings/"
Repository = "https://github.com/Bluenix2/discord-typings/"
[build-system]
requires = ["flit_core >=3.5, <4"]
build-backend = "flit_core.buildapi"
[tool.flit]
module = {name = "discord_typings"}