-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
41 lines (35 loc) · 927 Bytes
/
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
[project]
name = "helloworld_jay0lee"
dynamic = [
"dependencies",
"version",
]
authors = [
{ name="Jay Lee", email="[email protected]" },
]
description = "Hello world testing"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = {text = "Apache License (2.0)"}
license-files = ["LICEN[CS]E*"]
[project.scripts]
helloworld = "helloworld.__main__:main"
[project.urls]
Homepage = "https://github.com/GAM-team/actions-hello-world"
Issues = "https://github.com/GAM-team/actions-hello-world/issues"
[tool.hatch.version]
path = "src/helloworld/__main__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/helloworld"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["src/requirements.txt"]
[build-system]
requires = [
"hatchling",
"hatch-requirements_txt",
]
build-backend = "hatchling.build"