forked from axonxorz/python-seafile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 630 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (17 loc) · 630 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
__version__ = '0.1.1'
setup(name='seafileapi',
version=__version__,
license='BSD',
description='Client interface for Seafile Web API',
author='Shuai Lin',
author_email='linshuai2012@gmail.com',
url='http://seafile.com',
platforms=['Any'],
packages=find_packages(),
install_requires=['requests'],
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)