forked from freedomofpress/trackthenews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (30 loc) · 1.02 KB
/
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
33
from setuptools import setup, find_packages
with open('requirements.txt') as f:
reqs = f.read().split()
with open('README.md') as f:
readme = f.read()
setup(
name='trackthenews',
version='0.1.10',
description='Monitor RSS feeds for keywords and act on matching results. A special project of the Freedom of the Press Foundation.',
long_description=readme,
long_description_content_type='text/markdown',
install_requires=reqs,
author='Parker Higgins',
author_email='[email protected]',
url='https://github.com/freedomofpress/trackthenews',
entry_points={
'console_scripts': ['trackthenews=trackthenews:main']
},
package_data={
'trackthenews': ['fonts/*']
},
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'],
packages=find_packages(exclude=('ttnconfig',))
)