Skip to content

Commit

Permalink
Add necessary files for creating a distributable build
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lawson committed Aug 1, 2012
1 parent 5254505 commit 1a90cbe
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@

MANIFEST
.DS_Store

# Docs
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
recursive-include surly *.py *.bash
include docs/*
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env python

from distutils.core import setup

setup(
name='surly',
version='0.0.0',
description='Surly URL Mapper',
author='Patrick Lawson',
author_email='[email protected]',
url='http://github.com/patricklaw/surly',
packages=['surly'],
requires=['nose'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
)

0 comments on commit 1a90cbe

Please sign in to comment.