-
Notifications
You must be signed in to change notification settings - Fork 101
/
setup.py
39 lines (34 loc) · 1.16 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
requirement_list = [r.strip() for r in open('requirements.txt', 'r').readlines() if r]
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
else:
requirement_list.append('futures')
setup(name='ImageScraper',
version='2.0.7',
install_requires= requirement_list,
author='Anantha Natarajan S',
author_email='[email protected]',
packages=['image_scraper'],
entry_points={
'console_scripts': ['image-scraper=image_scraper:main'],
},
test_suite='tests',
url='https://github.com/sananth12/ImageScraper/',
description='A simple image scraper to download all images from a given url',
classifiers=[
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities'
],
)