51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[project]
|
||
|
name = "loaih"
|
||
|
dynamic = ["version"]
|
||
|
description = "LOAIH - LibreOffice AppImage Helpers, help build a LibreOffice AppImage"
|
||
|
readme = "README.md"
|
||
|
authors = [
|
||
|
{ name = "Emiliano Vavassori", email = "syntaxerrormmm@libreoffice.org" },
|
||
|
]
|
||
|
dependencies = [
|
||
|
"click",
|
||
|
"lxml",
|
||
|
"packaging",
|
||
|
"pyyaml",
|
||
|
"requests",
|
||
|
]
|
||
|
classifiers = [
|
||
|
"Development Status :: 5 - Production/Stable",
|
||
|
"Environment :: Console",
|
||
|
"Intended Audience :: Information Technology",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: POSIX :: Linux",
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"Topic :: Office/Business :: Office Suites",
|
||
|
"Topic :: Software Development :: Quality Assurance",
|
||
|
"Topic :: System :: Software Distribution",
|
||
|
]
|
||
|
|
||
|
[tool.hatch.version]
|
||
|
path = "src/loaih/version.py"
|
||
|
|
||
|
[project.scripts]
|
||
|
loaih = "loaih.script:cli"
|
||
|
|
||
|
[project.urls]
|
||
|
Homepage = "https://pypi.org/project/loaih/"
|
||
|
Documentation = "https://git.libreitalia.org/libreitalia/loaih/wiki"
|
||
|
Repository = "https://git.libreitalia.org/libreitalia/loaih/"
|
||
|
Issues = "https://git.libreitalia.org/libreitalia/loaih/issues/"
|
||
|
|
||
|
[publish.index]
|
||
|
|
||
|
[publish.index.repos.pypi]
|
||
|
url = "https://upload.pypi.org/legacy/"
|
||
|
|
||
|
[publish.index.repos.testpypi]
|
||
|
url = "https://test.pypi.org/legacy/"
|