Skip to content

Commit

Permalink
Get project to use pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
sarenji committed Jun 18, 2012
1 parent 9e87b76 commit 3f9a9bb
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1 +1,4 @@
*.pyc
dist/
build/
MANIFEST
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
include README.md
2 changes: 1 addition & 1 deletion example.py
@@ -1,5 +1,5 @@
import pyrc
import utils.hooks as hooks
import pyrc.utils.hooks as hooks

class HerpBot(pyrc.Bot):
@hooks.command
Expand Down
1 change: 1 addition & 0 deletions pyrc/__init__.py
@@ -0,0 +1 @@
from bots import Bot
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions setup.py
@@ -0,0 +1,18 @@
from distutils.core import setup
setup(name='pyrc',
version='0.5',
description='Simple, clean Python IRC library',
author='David Peter',
author_email='david.a.peter@gmail.com',
url='http://github.com/sarenji/pyrc',
packages=['pyrc', 'pyrc/utils'],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)

0 comments on commit 3f9a9bb

Please sign in to comment.