-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 825 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
36
[project]
name="itg-cli"
dynamic = ["version"]
dependencies = [
"simfile==2.1.1",
"gdown>=5.2.0",
"pyrfc6266>=1.0.2",
"tomlkit>=0.13.2",
"typer>=0.12.5",
]
requires-python = ">=3.10"
authors = [{name = "Lucas Clark"}]
keywords = ["itg", "cli", "python", "itgmania", "stepmania"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10"
]
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/lucdar/itg-cli"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
itg-cli = "itg_cli.__main__:cli"
[tool.setuptools.dynamic]
version = {attr = "itg_cli.__version__"}
[tool.setuptools.package-data]
itg_cli = ["config_template.toml"]