Skip to content

Commit

Permalink
Merge pull request #70 from lewisamarshall/development
Browse files Browse the repository at this point in the history
Added install_requires to setup.py.
  • Loading branch information
lewisamarshall committed Jun 11, 2019
2 parents 052c878 + f75a01b commit f20fe32
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: false
language: python
python:
- '2.7'
- '3.4'
- '3.5'
notifications:
email: false
install:
Expand Down
2 changes: 1 addition & 1 deletion ionize/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.4'
__version__ = '1.2.0'
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,10 @@
package_data={'ionize': ['Database/ion_data.json']},
entry_points={'console_scripts': ['ionize = ionize.__main__:cli']},
test_suite="ionize.tests",
install_requires=["numpy",
"scipy",
"pandas",
"biopython",
"click",
],
)

0 comments on commit f20fe32

Please sign in to comment.