Skip to content

Commit

Permalink
Merge pull request #16 from mhahn/setup-requirements
Browse files Browse the repository at this point in the history
Specify requirements in setup.py for install and test
  • Loading branch information
phobologic committed Mar 29, 2015
2 parents b142c24 + a2a45f4 commit 1a7309c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ build/
objdir/
dist/
*.egg-info
.eggs/

# nosetest --with-coverage dumps these in CWD
.coverage
Expand Down
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

src_dir = os.path.dirname(__file__)

install_requires = [
'aws_helper>=0.2.0',
'troposphere>=0.7.1',
'netaddr>=0.7.10',
'boto>=2.25.0',
'PyYAML>=3.11',
]

tests_require = [
'nose>=1.0',
]


def read(filename):
full_path = os.path.join(src_dir, filename)
Expand All @@ -23,4 +35,7 @@ def read(filename):
long_description=read('README.rst'),
packages=find_packages(),
scripts=glob.glob(os.path.join(src_dir, 'scripts', '*')),
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
)

0 comments on commit 1a7309c

Please sign in to comment.