Skip to content

Commit

Permalink
Added setup.py and manifest.in
Browse files Browse the repository at this point in the history
  • Loading branch information
rgalanakis committed Feb 15, 2014
1 parent 4172e89 commit 0b04220
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,8 @@
recursive-include hostthedocs *.py
recursive-include hostthedocs/static *.*
recursive-include hostthedocs/templates *.html
prune hostthedocs/static/docfiles
include *.py
include LICENSE.txt
include README.rst
include requirements.txt
10 changes: 10 additions & 0 deletions setup.py
@@ -0,0 +1,10 @@
from distutils.core import setup

setup(name='hostthedocs',
version='0.1.0',
description='Makes documentation hosting easy.',
author='Rob Galanakis',
author_email='rob.galanakis@gmail.com',
url='https://github.com/rgalanakis/hostthedocs',
packages=['hostthedocs'],
)

0 comments on commit 0b04220

Please sign in to comment.