forked from adamlwgriffiths/amazon_scraper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (45 loc) · 1.33 KB
/
setup.py
File metadata and controls
executable file
·49 lines (45 loc) · 1.33 KB
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
47
48
49
# fix building inside a virtualbox VM
# http://bugs.python.org/issue8876#msg208792
try:
import os
del os.link
except:
pass
from setuptools import setup
# import the README
with open('README.rst') as f:
long_description = f.read()
__version__ = None
with open('amazon_scraper/version.py') as f:
exec(f.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",
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=(
'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',
),
)