Skip to content

Commit

Permalink
Add distutils setup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansturmer committed Feb 18, 2013
1 parent f66411b commit 6dccc79
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
.*
*.bak
*.swp

dist
MANIFEST
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from distutils.core import setup

setup(name='tableview',
version='1.0',
packages=['tableview'],
description='Package for loading and manipulating tabular data.',
author='Ryan Sturmer',
author_email='ryansturmer@gmail.com',
url='http://www.github.com/ryansturmer/tableview')

0 comments on commit 6dccc79

Please sign in to comment.