Skip to content

Commit

Permalink
Add a setup.py, make this thing installable
Browse files Browse the repository at this point in the history
  • Loading branch information
grncdr committed Feb 8, 2012
1 parent 0036bb2 commit dc03754
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,16 @@
from distutils.core import setup

if __name__ == '__main__':
setup(name='sphinxcontrib-coffee',
version='0.0.1',
author="Stephen Sugden",
author_email="stephen@betsmartmedia.com",
packages=['sphinxcontrib',
'sphinxcontrib.coffeedomain'],
package_dir={
'sphinxcontrib': 'src/sphinxcontrib',
'sphinxcontrib.coffeedomain': 'src/sphinxcontrib/coffeedomain'
},
package_data={
'sphinxcontrib.coffeedomain': ['nodes_to_json.coffee'],
})

0 comments on commit dc03754

Please sign in to comment.