Skip to content

Commit

Permalink
Merge pull request #72 from /issues/71
Browse files Browse the repository at this point in the history
Add requirements file
  • Loading branch information
mcquin authored Oct 2, 2017
2 parents fa0357f + 25a0acc commit e6d8828
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ addons:
cache:
- pip
install:
- pip install --upgrade --editable .[dev]
- pip install --upgrade -r requirements.txt
language:
- python
python:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
- PYTHON: "C:\\Python36-x64"

install:
- "%PYTHON%\\python.exe -m pip install --upgrade --editable .[dev]"
- "%PYTHON%\\python.exe -m pip install --upgrade -r requirements.txt"

build: off

Expand Down
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
--index-url https://pypi.python.org/simple/

--editable .

pytest>=3.2.2
sphinx>=1.6.4
sphinx_rtd_theme>=0.2.5b1
2 changes: 0 additions & 2 deletions requirements_doc.txt

This file was deleted.

9 changes: 0 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import setuptools


with open("requirements_doc.txt", "r") as f:
doc_requirements = f.read().splitlines()


setuptools.setup(
name='cytominer_database',
version='0.0.1b2',
Expand All @@ -14,11 +10,6 @@
[console_scripts]
cytominer-database=cytominer_database.command:command
""",
extras_require={
"dev": [
"pytest>=3.2.2",
] + doc_requirements
},
long_description="cytominer-database provides mechanisms to import CSV "
"files generated in a morphological profiling experiment "
"into a database backend. "
Expand Down

0 comments on commit e6d8828

Please sign in to comment.