summarylogtreecommitdiffstats
path: root/setup.py
blob: ccf0808a5209b17a4ac0d1777db49d0fe4be1c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python2

from setuptools import find_packages, setup

setup(
    name = "wsgidav",
    version = "6.2.2",
    author = "Seafile Ltd.",
    author_email = "info@seafile.com",
    description = ("Seafile webdav server"),
    license = "MIT",
    url = "https://github.com/haiwen/seafdav",
    packages = find_packages(exclude=["tests.*", "tests", "wsgidav.samples"])
)