2023-10-15 09:00:29 +01:00
|
|
|
[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 lda" },
|
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
]
|
|
|
|
dependencies = [
|
2023-10-17 19:33:31 +01:00
|
|
|
"argon2-cffi",
|
2023-10-15 09:00:29 +01:00
|
|
|
"msgspec",
|
|
|
|
"pathvalidate",
|
|
|
|
"sanic",
|
2023-10-17 19:33:31 +01:00
|
|
|
"tomli_w",
|
2023-10-15 09:00:29 +01:00
|
|
|
"watchdog",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = ""
|
|
|
|
|
|
|
|
[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",
|
|
|
|
]
|