Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
setup.py stuff
  • Loading branch information
bfirsh committed Oct 9, 2012
1 parent f9845bf commit 44ff10b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
*.pyc
*.egg-info
/dist
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,4 @@
include LICENSE
include README.md
include requirements.txt
recursive-include loom
13 changes: 4 additions & 9 deletions setup.py
Expand Up @@ -6,17 +6,12 @@
setup(
name='loom',
version='0.0.1',
description='',
author='',
author_email='',
description='Elegant deployment with Fabric and Puppet.',
author='Ben Firshman',
author_email='ben@firshman.co.uk',
url='http://github.com/bfirsh/loom',
packages = [
'loom'
],
package_data = {},
include_package_data=True,
packages = ['loom'],
install_requires = open('requirements.txt').readlines(),
entry_points={},
#test_suite = 'nose.collector',
)

0 comments on commit 44ff10b

Please sign in to comment.