forked from haiwen/python-seafile
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 658 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 658 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.2.4'
setup(name='python-seafile-api',
version=__version__,
license='BSD',
description='Client interface for Seafile Web API',
author='Igor Rumyantsev',
author_email='igorrum@mail.ru',
url='https://github.com/Widly/python-seafile',
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'],
)