forked from lionheart/bottlenose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.37 KB
/
setup.py
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
37
38
39
40
41
from setuptools import setup, find_packages
import sys, os
version = '0.2.1'
install_requires = []
CURRENT_FOLDER = os.path.dirname(__file__)
def _py26OrGreater():
return sys.hexversion > 0x20600f0
if not _py26OrGreater():
install_requires.append("simplejson>=1.7.1")
setup(name='bottlenose',
version=version,
description="A Python hook into the Amazon.com Product Advertising API",
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
keywords='amazon, product advertising, api',
author='Dan Loewenherz',
author_email='dloewenherz+bottlenose@gmail.com',
url='http://github.com/dlo/bottlenose',
license='MIT License',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=install_requires,
)