forked from JohnEskimSmith/python-seafile-2022
-
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) · 703 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 703 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.0.1'
setup(name='python-seafile-2022',
version=__version__,
license='BSD',
description='Client interface for Seafile Web API(2022)',
author='Igor Rumyantsev, Andrey Skhomenko',
author_email='andrew.foma@gmail.com',
url='https://github.com/JohnEskimSmith/python-seafile-2022',
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'],
)