newspaper/setup.py
2014-12-17 10:55:46 -08:00

46 lines
981 B
Python

# -*- coding: utf-8 -*-
"""
Lucas Ou 2014 -- http://lucasou.com
Setup guide: http://guide.python-distribute.org/creation.html
python setup.py sdist bdist_wininst upload
"""
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wininst upload')
sys.exit()
packages = [
'newspaper',
'newspaper.packages',
'newspaper.packages.tldextract',
'newspaper.packages.feedparser',
]
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='newspaper',
version='0.0.9',
description='Simplified python article discovery & extraction.',
author='Lucas Ou-Yang',
author_email='lucasyangpersonal@gmail.com',
url='https://github.com/codelucas/newspaper/',
packages=packages,
include_package_data=True,
install_requires=required,
license='MIT',
zip_safe=False,
)