Turn into python project
This commit is contained in:
parent
404d8e0f18
commit
792ee5c281
2 changed files with 33 additions and 0 deletions
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
include src/*.qml
|
||||||
32
pyproject.toml
Normal file
32
pyproject.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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"]
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue