46 lines
800 B
TOML
46 lines
800 B
TOML
[build-system]
|
|
requires = ["hatchling", "hatch-vcs"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "cista"
|
|
dynamic = ["version"]
|
|
description = "Dropbox-like file server with modern web interface"
|
|
readme = "README.md"
|
|
license = ""
|
|
authors = [
|
|
{ name = "Vasanko" },
|
|
]
|
|
classifiers = [
|
|
]
|
|
dependencies = [
|
|
"argon2-cffi",
|
|
"docopt",
|
|
"inotify",
|
|
"msgspec",
|
|
"pathvalidate",
|
|
"pyjwt",
|
|
"sanic",
|
|
"tomli_w",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = ""
|
|
|
|
[project.scripts]
|
|
cista = "cista.__main__:main"
|
|
|
|
[tool.hatch.version]
|
|
source = "vcs"
|
|
|
|
[tool.hatch.build]
|
|
hooks.vcs.version-file = "cista/_version.py"
|
|
hooks.vcs.template = """
|
|
# This file is automatically generated by hatch build.
|
|
version = {version!r}
|
|
version_tuple = {version_tuple!r}
|
|
"""
|
|
targets.sdist.include = [
|
|
"/cista",
|
|
]
|