-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (25 loc) · 858 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
37
38
39
from setuptools import setup, find_packages
from codecs import open
from os import path
setup(
name='Web_Crawler',
version='2.0.0',
description='A light-weight web crawler',
# The project's main homepage.
url='https://github.com/Boomslet/Web_Crawler',
# Author details
author='Mark Boon',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='web webcrawl scrape',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['beautifulsoup4', 'lxml'],
)