forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 630 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 630 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup, find_packages
from imp import load_source
version = load_source("version", os.path.join("goose", "version.py"))
setup(name='goose',
version=version.__version__,
description="Html Content / Article Extractor",
long_description="",
keywords='',
author='Xavier Grangier',
author_email='grangier@gmail.com',
url='https://github.com/grangier/python-goose',
license='Apache',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['Pillow', 'lxml', 'cssselect', 'jieba', 'beautifulsoup'],
test_suite="tests"
)