-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
26 lines (24 loc) · 1.04 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
from setuptools import setup, find_packages
import webarticle2text
setup(name='webarticle2text',
version=webarticle2text.__version__,
description='Extracts the main article text from a webpage.',
author='Chris Spencer',
author_email='[email protected]',
url='https://github.com/chrisspen/webarticle2text',
license='LGPL License',
packages=find_packages(),
scripts=['webarticle2text/webarticle2text.py'],
install_requires=open('requirements.txt').readlines(),
#https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: General',
],
platforms=['OS Independent'],)