forked from TheGhouls/oct-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.13 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
__author__ = 'karec'
import os
from setuptools import setup
from octbrowser import __version__
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
with open('README.rst') as f:
long_description = f.read()
setup(
name='octbrowser',
version=__version__,
author='Emmanuel Valette',
author_email='[email protected]',
packages=['octbrowser', 'octbrowser.history'],
description="A web scrapper based on lxml library.",
long_description=long_description,
url='https://github.com/karec/oct-browser',
download_url='https://github.com/karec/oct-browser/archive/master.zip',
keywords=['testing', 'mechanize', 'webscrapper', 'browser', 'web', 'lxml', 'html'],
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
],
install_requires=[
'argparse',
'requests',
'lxml',
'cssselect',
'tinycss',
'six'
]
)