blob: 8c014de6ce40da91300708f4031554f0d6a15a02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name = "seafobj",
version = "7.1.4",
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"])
)
|