-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.42 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "discord-rpc"
##### VERSION #####
version = "5.6b1"
###################
description = "A Python wrapper for the Discord RPC API"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [{ name = "Senophyx", email = "contact@senophyx.id" }]
keywords = ["Discord", "rpc", "discord rpc"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python"
]
# There are currently no required packages in requirements.txt
dependencies = []
[project.urls]
Homepage = "https://github.com/Senophyx/discord-rpc"
Documentation = "https://senophyx.id/docs/discord-rpc/"
"Issue tracker" = "https://github.com/Senophyx/discord-rpc/issues"
Discord = "https://discord.gg/qpT2AeYZRN"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["discordrpc*"]
exclude = ["tests*", "examples*", "media*", "venv*", "build*", "dist*", "*egg-info*"]