-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 706 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='labstack',
version='1.0.1',
description='Official Python client library for the LabStack API',
long_description='`<https://github.com/labstack/labstack-python>`_',
keywords='image compress, image resize, text summary, barcode generate, barcode scan',
url='https://github.com/labstack/labstack-python',
author='Vishal Rana',
author_email='vr@labstack.com',
license='MIT',
packages=['labstack'],
install_requires=[
'requests==2.22.0'
],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)