-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 2.03 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = [
"hatchling",
"hatch-requirements-txt",
"versioningit"
]
build-backend = "hatchling.build"
[project]
name = "alcubierre"
authors = [
{ name="exurd", email="[email protected]" },
]
keywords = ["roblox", "achievements", "badges", "sober", "bloxstrap"]
description = "A Roblox Badge-to-Badge Place Teleporter"
dynamic = ["version", "dependencies"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Games/Entertainment",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
]
[project.urls]
Homepage = "https://github.com/exurd/alcubierre/"
Repository = "https://github.com/exurd/alcubierre.git"
Issues = "https://github.com/exurd/alcubierre/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/alcubierre/**"]
[tool.hatch.build.targets.wheel]
include = ["src/alcubierre/**"]