Skip to content

Commit

Permalink
Add a setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bickfordb committed Jun 20, 2009
1 parent a601266 commit 970df1c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
dist
*.pyc
**/*.pyc

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GPL V3 or Later
LGPL V3 or Later

RMS was here
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from distutils.core import setup
from distutils.command.install_data import install_data
from distutils.command.install import INSTALL_SCHEMES
import os
import sys

setup(
name="waffle",
version='0.1',
url='http://github.com/bickfordb/waffle/',
author='Brandon Bickford',
author_email='bickfordb@gmail.com',
description='A library to store schema-less data in relational databases',
packages=['waffle'],
classifiers = [
'Development Status :: 1 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
])

0 comments on commit 970df1c

Please sign in to comment.