This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·63 lines (58 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup
from wex import __version__
setup(
name='Wextracto',
version=__version__,
description='Web Data Extraction Library Written in Python',
long_description='\n\n'.join([
open('README.rst').read(),
open('HISTORY.rst').read(),
]),
author='Giles Brown',
author_email='[email protected]',
url='https://github.com/eBay/wextracto',
download_url='https://github.com/eBay/wextracto/tarball/' + __version__,
license='BSD',
include_package_data=True,
packages=['wex'],
package_data={
'': ['LICENSE.txt', 'NOTICES.txt'],
'wex': ['logging.conf', 'phantomjs.js', 'js/*.js'],
},
zip_safe=False,
install_requires=[
'six',
'requests',
'lxml>=3',
'cssselect',
'publicsuffix>=1.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
entry_points="""
[console_scripts]
wex = wex.command:main
[pytest11]
wex = wex.pytestplugin
[wex.method.http]
get = wex.http:request
post = wex.http:request
phantomjs = wex.phantomjs:request_using_phantomjs
form = wex.form:submit_form
[wex.method.https]
get = wex.http:request
post = wex.http:request
phantomjs = wex.phantomjs:request_using_phantomjs
form = wex.form:submit_form
[wex.method.ftp]
get = wex.ftp:get
"""
)