-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 970 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='scrapejs',
version='0.0.1.1',
description='A lightweight Javascript-aware, headless web scraping library for Python',
author='Agix',
author_email='[email protected]',
license='Apache 2.0',
url='https://github.com/animeshkundu/pyscrape',
long_description=open('README.md').read(),
packages=['pyscrape'],
scripts=[],
install_requires=[
'webkit_server>=1.0',
'lxml',
'xvfbwrapper',
'tornado',
'futures',
'fake-useragent'
],
entry_points={
'console_scripts': [
'pyscrape = pyscrape.__init__:cli',
'pyrun = pyscrape.__init__:http'
]
},
)