Add basic setup.py

This commit is contained in:
R. Tyler Ballance 2010-02-19 15:31:41 -08:00
parent 93ddabefaf
commit 8659579935
1 changed files with 22 additions and 0 deletions

22
setup.py Executable file
View File

@ -0,0 +1,22 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from moxy import __version__
requirements = [
'eventlet >= 0.9.3',
]
setup(
name='moxy',
version=__version__,
description='''Django db backend for MySQL using MySQLdb and eventlet.db_pool''',
author='R. Tyler Ballance',
author_email='tyler@linux.com',
url='http://github.com/rtyler/django-moxy',
packages=['moxy'],
install_requires=requirements,
test_suite='moxy.tests',
)