-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (28 loc) · 789 Bytes
/
setup.py
File metadata and controls
36 lines (28 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='Wrapper',
packages=['wrapper'],
version='1.1.0-beta.1',
license="GPL",
description='''
A wrapper around several APIs.
Response is a request object, which is much extendable for custom error handling.
The Available APIs are:
EANData
Locu
Spoonacular
Walmart
Zomato
''',
author='Biwin John',
author_email='biwinjohn@gmail.com',
url='https://github.com/biwin/wrapper',
download_url='https://github.com/biwin/wrapper/archive/0.1.tar.gz',
install_requires=[],
requires=['requests', 'barcodenumber'],
keywords=['api', 'python'],
classifiers=[],
)