mirror of
https://git.ikl.sh/132ikl/liteshort.git
synced 2023-08-10 21:13:04 +03:00
34 lines
801 B
TOML
34 lines
801 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "liteshort"
|
|
version = "1.2.3"
|
|
dependencies = [
|
|
"appdirs~=1.4",
|
|
"bcrypt~=4.0",
|
|
"flask~=2.2",
|
|
"pyyaml~=6.0",
|
|
"requests~=2.28",
|
|
]
|
|
authors = [
|
|
{name = "Rose Spangler", email = "rose@ikl.sh"},
|
|
]
|
|
description = "User-friendly, actually lightweight, and configurable URL shortener"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
license = {text = "MIT"}
|
|
|
|
[project.scripts]
|
|
liteshort = "liteshort:app.run"
|
|
lshash = "liteshort.util:hash_passwd"
|
|
|
|
[tool.setuptools.package-data]
|
|
liteshort = ["templates/*", "static/*", "config.template.yml"]
|