-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 939 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
scripts = ['rss-digest']
setup(
name='rss-digest',
version='1.0',
packages=find_packages(),
scripts=scripts,
install_requires=['reader', 'jinja2', 'appdirs', 'lxml', 'lxml-stubs', 'pytest', 'requests', 'sphinx', 'pytz',],
package_data={
'rss_digest': ['resources/templates/*', 'resources/helpers/*']
},
author='bunburya',
author_email='[email protected]',
description='Generate digests of subscribed RSS and Atom feeds.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='rss atom digest email feed',
url='https://github.com/bunburya/rss-digest',
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: MIT License'
]
)