Skip to content

Commit

Permalink
setup.py stuff
Browse files Browse the repository at this point in the history
  • 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 *.pyc
*.egg-info *.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( setup(
name='loom', name='loom',
version='0.0.1', version='0.0.1',
description='', description='Elegant deployment with Fabric and Puppet.',
author='', author='Ben Firshman',
author_email='', author_email='ben@firshman.co.uk',
url='http://github.com/bfirsh/loom', url='http://github.com/bfirsh/loom',
packages = [ packages = ['loom'],
'loom'
],
package_data = {},
include_package_data=True,
install_requires = open('requirements.txt').readlines(), install_requires = open('requirements.txt').readlines(),
entry_points={},
#test_suite = 'nose.collector', #test_suite = 'nose.collector',
) )


0 comments on commit 44ff10b

Please sign in to comment.