Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed May 29, 2011
1 parent 3d4de5e commit 5c3d658
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,2 +1,4 @@
*.pyc
*~
*~
build
dist
6 changes: 6 additions & 0 deletions bin/auto2to3
@@ -0,0 +1,6 @@
#!/usr/bin/env python3.2

import auto2to3

if __name__ == '__main__':
auto2to3.main()
9 changes: 9 additions & 0 deletions setup.py
@@ -0,0 +1,9 @@
from distutils.core import setup

setup(name="auto2to3",
version="0.2",
author="Ben Darnell",
url="https://github.com/bdarnell/auto2to3/",
py_modules=["auto2to3"],
scripts=["bin/auto2to3"],
)

0 comments on commit 5c3d658

Please sign in to comment.