forked from buriy/python-readability
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (41 loc) · 1.13 KB
/
setup.py
File metadata and controls
executable file
·45 lines (41 loc) · 1.13 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = "0.2.5"
install_requires = [
"chardet",
"lxml",
]
tests_require = [
'coverage',
'nose',
'pep8',
]
setup(
name="readability-lxml",
version=version,
author="Yuri Baburov",
author_email="burchik@gmail.com",
description="fast python port of arc90's readability tool",
keywords='readable read parse html document readability',
long_description=open("README.rst").read(),
license="Apache License 2.0",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
url="http://github.com/buriy/python-readability",
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite = "nose.collector",
entry_points={
'console_scripts':
['readability=readability_lxml:client.main']
},
)