Skip to content

Commit

Permalink
added gitignore and minimial setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Northey committed Jun 23, 2012
1 parent 19fb13d commit d5f977b
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
@@ -0,0 +1,24 @@
*.mo
*.egg-info
*.egg
*.EGG
*.EGG-INFO
bin
build
develop-eggs
downloads
dropin.cache
eggs
fake-eggs
parts
dist
.installed.cfg
.mr.developer.cfg
.hg
.bzr
.svn
*.pyc
*.pyo
*.tmp
*~
#\#*
21 changes: 21 additions & 0 deletions setup.py
@@ -0,0 +1,21 @@
#!/usr/bin/env python

from setuptools import setup


setup(name='txmysql',
version='0.4.0',
description='Twisted MySQL Protocol implementation'
author='Hybrid Logic',
author_email='luke@hybridlogic.co.uk',
url='https://github.com/hybridlogic/txMySQL',
platforms='any',
packages=[
'txmysql',
],
packages=find_packages(exclude=['ez_setup']),
install_requires=[
'setuptools',
]
zip_safe=False,
)

0 comments on commit d5f977b

Please sign in to comment.