-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
57 lines (47 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = [
"hatchling",
"hatch-requirements-txt",
"versioningit"
]
build-backend = "hatchling.build"
[project]
name = "dbr"
authors = [
]
keywords = ["roblox", "achievements", "badges", "metagamerscore"]
description = "Roblox Dumb Badge(s) Remover"
dynamic = ["version", "dependencies"]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent"
]
[project.scripts]
dbr = "dbr.__main__:main"
[project.urls]
Homepage = "https://github.com/exurd/DBR/"
Repository = "https://github.com/exurd/DBR.git"
Issues = "https://github.com/exurd/DBR/issues"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
source = "versioningit"
[tool.hatch.build]
sources = ["src"]
[tool.hatch.build.targets.sdist]
include = ["src/dbr/**"]
[tool.hatch.build.targets.wheel]
include = ["src/dbr/**"]