-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
28 lines (25 loc) · 904 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
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
version = '0.2.5'
setup(
name='boilerpipy',
version=version,
description='Readability/Boilerpipe extractor in Python',
author='Harshavardhana',
author_email='harsha@harshavardhana.net',
url='https://github.com/harshavardhana/boilerpipy.git',
license='Apache',
platforms=['any'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
scripts=['bin/readability', 'bin/query'],
install_requires=['lxml', 'beautifulsoup4', 'urlparse2'],
long_description=long_description,
)