summaryrefslogtreecommitdiff
path: root/hosts/surtr/http/webdav/py-webdav/setup.py
blob: d59c25488860bc45c0d55c31d7b783fcff9f343d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import setuptools

with open('VERSION', 'r', encoding='utf-8') as version_file:
    version = version_file.read().strip()

setuptools.setup(
    name="py-webdav",
    version=version,
    package_dir={"": "."},
    packages=setuptools.find_packages(),
    python_requires=">=3.8",
    install_requires=[
        "PyNaCl ==1.5.*",
        # "psycopg ==3.0.*",
        "WsgiDAV ==4.0.*",
    ],
)