-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.4 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
34
35
36
37
38
39
40
41
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='yagi',
version='0.12',
author='Matthew Dietz, Monsyne Dragon',
author_email='[email protected], [email protected]',
description=("A PubSubHubBub Publisher and ATOM feed generator that "
"can consume events from multiple input sources and "
"publish them to standard PSHB hubs"),
license='Apache License (2.0)',
keywords='PubSubHubBub notifications events ATOM RSS',
packages=find_packages(exclude=['tests']),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6'
],
url='https://github.com/Cerberus98/yagi',
scripts=['bin/yagi-feed', 'bin/yagi-event'],
long_description=read('README.md'),
install_requires=['anyjson',
'redis',
'argparse',
'carrot',
'eventlet',
'python-dateutil',
'feedgenerator',
'httplib2',
'PubSubHubbub_Publisher',
'routes',
'WebOb'],
zip_safe=False
)