Skip to content

Commit

Permalink
Merge pull request #38 from tillahoffmann/pipenv
Browse files Browse the repository at this point in the history
Use pipenv for dependency management.
  • Loading branch information
tillahoffmann committed Aug 22, 2018
2 parents 6e31d55 + 4477714 commit 95811e7
Show file tree
Hide file tree
Showing 6 changed files with 606 additions and 20 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
language: python
python:
- '3.6'
- '3.6'
cache: pip
install:
- make install
- pip install pipenv
- pipenv install --dev --ignore-pipfile
script:
- make
- pipenv run make
deploy:
provider: pypi
skip_existing: true
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,5 @@ docs :
sphinx-build -b doctest docs build
sphinx-build -nWT docs build

install :
pip install -r requirements.txt
pip install -e .

clean :
rm -rf build/
22 changes: 22 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pythonflow = {editable = true, path = "."}

[dev-packages]
twine = ">=1.9.1"
pytest = ">=3.2.1"
pytest-cov = ">=2.5.1"
pylint = "<=1.9.3"
pyzmq = ">=17.0.0"
matplotlib = ">=2.0.0"
scipy = "*"
imageio = "*"
Sphinx = ">=1.7.2"
sphinx_rtd_theme = ">=0.3.0"

[requires]
python_version = "3.6"

0 comments on commit 95811e7

Please sign in to comment.