-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (35 loc) · 1 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
47
48
49
50
51
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 8 23:28:21 2017
@author: sudharsan
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
req_list = ['tqdm', 'requests', 'lxml', 'futures']
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name='extscrape',
packages=['extscrape'],
version='1.0.1',
description='Scrapes files from the web'
' with specified extensions.',
author='Sudharshan',
author_email='[email protected]',
install_requires=req_list,
entry_points={
'console_scripts': ['extscrape = extscrape:'
'main']
},
url='https://github.com/parakalan/extscrape',
keywords=['scrape', 'extension'],
classifiers=['Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Education'],
license='MIT License'
)