-
-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #153
- Loading branch information
Elad Alfassa
committed
Nov 10, 2012
1 parent
dba5dac
commit 7964f82
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,6 @@ logs/* | |
*.db | ||
*~ | ||
doc/build/* | ||
build/ | ||
.pid-* | ||
willie.wiki/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
|
||
setup(name = 'willie', | ||
version = '3.1', | ||
description = 'Simple and extendible IRC bot', | ||
author = 'Edward Powell', | ||
author_email = '[email protected]', | ||
url = 'http://willie.dftba.net/', | ||
long_description = """Willie is a simple, lightweight, open source, easy-to-use IRC Utility bot, written in Python. It's designed to be easy to use, easy to run, and easy to make new features for. """, | ||
packages = ['willie', 'willie.modules'], | ||
scripts = ['willie.py'] | ||
) |