forked from adamlwgriffiths/amazon_scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 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
42
43
44
45
46
# fix building inside a virtualbox VM
# http://bugs.python.org/issue8876#msg208792
import os
del os.link
from setuptools import setup, Extension
# import the README
with open('README.rst') as f:
long_description = f.read()
exec(open('amazon_scraper/version.py').read())
setup(
name="amazon_scraper",
version=__version__,
description="Provides content not accessible through the standard Amazon API",
long_description=long_description,
license = 'BSD',
author="Adam Griffiths",
author_email="[email protected]",
url='https://github.com/adamlwgriffiths/amazon_scraper',
test_suite='tests',
packages=['amazon_scraper'],
install_requires=[
'python-amazon-simple-product-api',
'xmltodict',
'python-dateutil',
'beautifulsoup4',
'requests',
],
platforms=['any'],
classifiers=(
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
),
)