Skip to content

Commit

Permalink
added pandas to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dereneaton committed Nov 4, 2015
1 parent a900406 commit bc8b39e
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,32 @@
import re

requirements = [
'numpy>=1.9',
'pip>7.0',
'Cython',
'scipy>0.10',
'numpy>=1.9',
'pandas',
'h5py',
'pyzmq>14.5',
'dill>0.2',
'sphinx',
'ipyparallel'
'ipython>=4.0',
'ipyparallel',
'jupyter'
]

#import ipyrad
#version=ipyrad.__version__,

setup(
name="ipyrad",

version=re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]",
open(
"ipyrad/__init__.py",
"r").read(),
re.M).group(1),
r"^__version__ = ['\"]([^'\"]*)['\"]",
open(
"ipyrad/__init__.py",
"r").read(),
re.M).group(1),

url="https://github.com/dereneaton/ipyrad",

Expand Down

0 comments on commit bc8b39e

Please sign in to comment.