summarylogtreecommitdiffstats
path: root/setup.py
blob: 28d1fd3d4d09f38f7076c9f9f800b1842c96af78 (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 = "seafobj",
    version = "6.2.2",
    author = "Seafile Ltd.",
    author_email = "info@seafile.com",
    description = ("Python library for accessing seafile data model"),
    license = "Apache2",
    url = "https://github.com/haiwen/seafobj",
    packages = find_packages(exclude=["test.*", "test"])
)