forked from mathialo/bython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (29 loc) · 765 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
30
31
32
33
34
35
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{ name = "Harshal Laheri", email = "harshal@harshallaheri.me" }]
description = "Python with Valorant"
dynamic = ["version"]
license = { text = "MIT" }
name = "valthon"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"click==8.1.8",
]
[project.urls]
Homepage = "https://github.com/harshal6927/valthon"
Website = "https://harshallaheri.me/"
[tool.hatch.version]
path = "valthon/__init__.py"
pattern = "VERSION_NUMBER\\s*=\\s*['\"](?P<version>[^'\"]+)['\"]"
[project.scripts]
py2vln = "valthon.translator:main"
valthon = "valthon.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["valthon"]
[dependency-groups]
dev = [
"pytest==8.3.5",
]