forked from abiczo/github-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 741 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 741 Bytes
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
from setuptools import setup
from githubnotifier import __version__
install_requires = ['feedparser']
try:
import json
except ImportError:
install_requires += ['simplejson']
setup(name='github-notifier',
description='Github updates notifier for Linux',
author='Andras Biczo',
author_email='abiczo@gmail.com',
url='http://github.com/abiczo/github-notifier',
license='MIT',
version=__version__,
py_modules=['githubnotifier'],
install_requires=install_requires,
zip_safe=False,
packages=[''],
package_dir={'': '.'},
package_data={'': ['octocat.png']},
entry_points="""
[console_scripts]
github-notifier = githubnotifier:main
"""
)