-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.47 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
[project]
name = "discord-gateway"
version = "0.4.0"
description = "Sans-I/O implementation of the Discord gateway"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.6.2"
license = {file = "LICENSE"}
authors = [{name = "Bluenix", email = "[email protected]"}]
keywords = [
"discord", "discord-api", "discord-bot", "discord-api-wrapper",
"discord-gateway", "python-3"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["wsproto >= 1.0.0, <2"]
[project.urls]
homepage = "https://github.com/Bluenix2/discord-gateway/"
repository = "https://github.com/Bluenix2/discord-gateway/"
[build-system]
requires = ["flit_core >=3.5<4"]
build-backend = "flit_core.buildapi"
[tool.flit]
module = {name = "discord_gateway"}