Skip to content

Commit

Permalink
Release as version 0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwildor committed Nov 17, 2013
1 parent c3337b3 commit 9e570e8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
__pycache__
*.pyc
build/
dist/
MANIFEST
1 change: 1 addition & 0 deletions pyromancer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1'
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from distutils.core import setup

import pyromancer

setup(
name='Pyromancer',
version=pyromancer.__version__,
packages=['pyromancer', 'pyromancer.commands'],
description='Simple IRC bot implementation / framework',
long_description=open('README.md').read(),
author='Gwildor Sok',
author_email='[email protected]',
url='https://github.com/Gwildor/Pyromancer',
install_requires=[
'irc'
],
)

0 comments on commit 9e570e8

Please sign in to comment.