-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PyDiscoBot"
version = "1.1.3"
authors = [
{ name="Brian LaFond", email="Brian.L.LaFond@gmail.com" },
]
description = "A standard implimentation of discord-python API for bot usage."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.11",
]
dependencies = [
"discord.py",
"python-dotenv"
]
license = {file = "LICENSE"}
keywords = ["python", "discord", "bot", "api"]
[project.urls]
Homepage = "https://github.com/iroxusux/PyDiscoBot"
Issues = "https://github.com/iroxusux/PyDiscoBot/issues"