Get full text RSS feeds
https://morss.it/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
from datetime import datetime |
|
from glob import glob |
|
|
|
from setuptools import setup |
|
|
|
package_name = 'morss' |
|
|
|
setup( |
|
name = package_name, |
|
version = datetime.now().strftime('%Y%m%d.%H%M'), |
|
description = 'Get full-text RSS feeds', |
|
long_description = open('README.md').read(), |
|
long_description_content_type = 'text/markdown', |
|
author = 'pictuga', |
|
author_email = 'contact@pictuga.com', |
|
url = 'http://morss.it/', |
|
project_urls = { |
|
'Source': 'https://git.pictuga.com/pictuga/morss', |
|
'Bug Tracker': 'https://github.com/pictuga/morss/issues', |
|
}, |
|
license = 'AGPL v3', |
|
packages = [package_name], |
|
install_requires = ['lxml', 'bs4', 'python-dateutil', 'chardet'], |
|
extras_require = { |
|
'full': ['pymysql', 'redis', 'diskcache', 'gunicorn', 'setproctitle'], |
|
'dev': ['pylint', 'pytest', 'pytest-cov'], |
|
}, |
|
python_requires = '>=2.7', |
|
package_data = {package_name: ['feedify.ini']}, |
|
data_files = [ |
|
('share/' + package_name, ['README.md', 'LICENSE']), |
|
('share/' + package_name + '/www', glob('www/*.*')), |
|
], |
|
entry_points = { |
|
'console_scripts': [package_name + '=' + package_name + '.__main__:main'], |
|
}, |
|
scripts = ['morss-helper'], |
|
)
|
|
|