Skip to content

Commit

Permalink
[core] Add install script
Browse files Browse the repository at this point in the history
Issue #153
  • Loading branch information
Elad Alfassa committed Nov 10, 2012
1 parent dba5dac commit 7964f82
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ logs/*
*.db
*~
doc/build/*
build/
.pid-*
willie.wiki/*
14 changes: 14 additions & 0 deletions setup.py
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']
)

0 comments on commit 7964f82

Please sign in to comment.