-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.25 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "Redon-Hub"
description = "A product purchasing bot for Roblox groups. A.K.A. Hub."
authors = [
{name = "parker02311", email = "[email protected]"},
{name = "Redon Tech"}
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["roblox", "product", "purchasing", "bot", "hub"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Lua",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Office/Business :: Financial",
]
dynamic = ["version", "dependencies"]
requires-python = ">= 3.9"
[project.urls]
Funding = "https://ko-fi.com/parker02311"
Documentation = "https://hub.redon.tech"
Repository = "https://github.com/Redon-Tech/Redon-Hub"
Issues = "https://github.com/Redon-Tech/Redon-Hub/issues"
Changelog = "https://github.com/Redon-Tech/Redon-Hub/releases"
[project.scripts]
Redon-Hub = "redonhub.cli:main"
[tool.setuptools.packages.find]
exclude = ["roblox", "docs"]
[tool.setuptools.dynamic]
version = {attr = "redonhub.__version__"}
dependencies = {file = ["requirements.txt"]}