-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (32 loc) · 1.03 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
from setuptools import setup, find_packages
VERSION = (0, 2, 0)
__version__ = '.'.join(map(str, VERSION))
setup(
name='scraper',
version=__version__,
description='Scraping Tool',
long_description=open('README.rst').read(),
author='Sandip Agarwal',
author_email='sandip.agarwal@joshlabs.in',
url='http://github.com/Thinktiv/scraper',
download_url='http://github.com/Thinktiv/scraper/downloads',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
"simplejson==2.6.1",
"Pillow==2.5.3",
"BeautifulSoup==3.2.1",
],
)