forked from xiaoxu193/PyTeaser
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (16 loc) · 632 Bytes
/
setup.py
File metadata and controls
19 lines (16 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(name='pyteaser',
version='1.0',
description="PyTeaser takes any news article and extract a brief summary from it",
license='MIT',
install_requires=['Pillow', 'lxml', 'cssselect', 'jieba', 'beautifulsoup'],
packages=find_packages(),
py_modules=['pyteaser'],
package_data={'goose': ['resources/images/*', 'resources/text/*']},
author = 'Xiao Xu',
author_email = 'xx56@cornell.edu',
url = 'https://github.com/xiaoxu193/PyTeaser',
test_suite='tests')