mirror of
https://github.com/codelucas/newspaper.git
synced 2025-12-23 05:36:50 +00:00
46 lines
981 B
Python
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,
|
|
)
|