-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 788 Bytes
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
[build-system]
requires = ["hatchling","hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "Python-Lua-Helper"
dynamic = ["version"]
description = "Lua configuration system for your Python projects."
authors = [{name = "DarkCaster", email = "dark.caster@outlook.com"}]
dependencies = []
requires-python = ">=3.10"
maintainers = [{name = "DarkCaster", email = "dark.caster@outlook.com"}]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["lua", "configuration"]
[project.urls]
Repository = "https://github.com/DarkCaster/Python-Lua-Helper.git"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = ["python_lua_helper", "lua/"]
[tool.hatch.build.targets.wheel]
packages = ["python_lua_helper"]
[tool.hatch.build.targets.wheel.hooks.custom]