-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.59 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"]
build-backend = "hatchling.build"
[project]
name = "shellraiser"
version = "1.0.0"
description = "A bash to C transpiler"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [{ name = "metacollin", email="metacollin@gmail.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C",
"Programming Language :: Unix Shell",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Code Generators",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/metacollin/shellraiser"
Issues = "https://github.com/metacollin/shellraiser/issues"
# Installs an executable named `shellraiser` onto the user's PATH that
# calls shellraiser:main (the module-level main() function).
[project.scripts]
shellraiser = "shellraiser.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/shellraiser"]
[tool.hatch.build]
artifacts = [
"src/shellraiser/runtime/*.c",
"src/shellraiser/runtime/*.h",
]
[tool.hatch.build.targets.sdist]
include = [
"src/shellraiser",
"README.md",
"LICENSE",
]