Skip to content

Commit 2c57a10

Browse files
Scott WarchalScott Warchal
Scott Warchal
authored and
Scott Warchal
committedFeb 27, 2018
add requriements file
1 parent cec306f commit 2c57a10

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
*.pyc
2+
.cache
23
*.build
34
*.dist
45
build/*
56
dist/*
67
*egg-info*
8+
*/__pycache__/*

‎requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
sqlalchemy>=1.0
2+
pandas>=0.16
3+
tqdm>=4.0
4+
numpy>=1.10

‎setup.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
from setuptools import setup
22

3+
def read_list(filepath):
4+
with open(filepath, "r") as f:
5+
rows = f.readlines()
6+
rows = [line.strip() for line in rows]
7+
return rows
8+
9+
310
setup(name="meld",
411
version="0.0.1",
512
url="http://github.com/swarchal/meld",
613
description="collating cellprofiler data from eddie jobs",
714
license="MIT",
815
packages=["meld"],
916
tests_require=["pytest"],
10-
install_requires=["sqlalchemy>=1.0", "pandas>=0.16", "tqdm>=4.0",
11-
"numpy>=1.10"])
12-
17+
install_requires=read_list("requirements.txt"))

0 commit comments

Comments
 (0)
Please sign in to comment.