32 lines
685 B
TOML
32 lines
685 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "leek"
|
|
version = "0.0.1"
|
|
authors = [{name = "Toast"}]
|
|
description = "Project diva megamix + mod manager"
|
|
license = "MIT"
|
|
classifiers = [
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Topic :: Utilities",
|
|
"Programming Language :: Python",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
|
|
[project.readme]
|
|
file = "README.md"
|
|
content-type = "text/markdown"
|
|
|
|
[project.scripts]
|
|
leek = "leek.leek_app:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["leek"]
|
|
package-dir = {leek = "src"}
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.data-files]
|
|
"share/applications" = ["xyz.toast003.leek.desktop"]
|
|
|