You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
819 B
TOML
39 lines
819 B
TOML
[project]
|
|
name = "ffx"
|
|
description = "FFX recoding and metadata managing tool"
|
|
version = "0.2.3"
|
|
license = {file = "LICENSE.md"}
|
|
dependencies = [
|
|
"requests",
|
|
"jinja2",
|
|
"click",
|
|
"textual",
|
|
"sqlalchemy",
|
|
]
|
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
authors = [
|
|
{name = "Marius", email = "javanaut@maveno.de"}
|
|
]
|
|
maintainers = [
|
|
{name = "Marius", email = "javanaut@maveno.de"}
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://gitea.maveno.de/Javanaut/ffx"
|
|
Repository = "https://gitea.maveno.de/Javanaut/ffx.git"
|
|
Issues = "https://gitea.maveno.de/Javanaut/ffx/issues"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project.scripts]
|
|
ffx = "ffx.ffx:ffx"
|