forked from seatable/seatable-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 718 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
__version__ = ''
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='seatable-api',
version=__version__,
license='Apache Licence',
description='Python client for SeaTable web api',
long_description=long_description,
long_description_content_type='text/markdown',
author='seatable',
author_email='support@seafile.com',
url='https://github.com/seatable/seatable-api-python',
platforms='any',
packages=find_packages(), # folder with __init__.py
install_requires=['requests', 'python-socketio<5', 'ply', 'python_dateutil'],
classifiers=['Programming Language :: Python'],
)