Skip to content

Commit

Permalink
Fixed setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Perez committed Sep 25, 2015
1 parent 24dff42 commit e59f5d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
json
urllib2
urllib
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
from distutils.core import setup

requirements = [
'json',
'urllib2',
'urllib'
]

setup(
name = 'travel-intelligence',
packages = ['travel-intelligence'], # this must be the same as the name above
version = '0.1',
install_requires=['json','urllib2','urllib'],
install_requires=requirements,
description = 'A wrapper around the travel-intelligence Web Service API',
author = 'Sebastien Perez',
author_email = '[email protected]',
Expand Down

0 comments on commit e59f5d6

Please sign in to comment.