-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 968 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 968 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
28
from setuptools import setup, find_packages
#import sys, os
version = '0.1'
setup(name='DoulaBot',
version=version,
description="A simple irc bot for communicating about release and deployment events and allowing irc participant to queue release and deployment tasks.",
long_description=open('README.rst').read(),
classifiers=[],
keywords='irc doula release deployment queue',
author='D. Whit Morriss',
author_email='whit at surveymonkey.com',
url='http://code.surveymonkey.com',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=["PEAK-Rules",
"gevent",
"python-irclib",
"pyres",
"redis"],
entry_points="""
[console_scripts]
doulabot = doulabot.bot:run_doulabot
""",
)