Skip to content

Commit

Permalink
Added Pipenv and Pipenv.lock files (fixes #83)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTimperley committed Oct 11, 2021
1 parent 292c867 commit c3f159e
Show file tree
Hide file tree
Showing 5 changed files with 775 additions and 14 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
Pipfile
Pipfile.lock

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ services:
python:
- '3.6'
install:
- pip install -r requirements.dev.txt
- pip install .
- pip install pipenv
- pipenv install --dev
script:
- tox
after_success:
Expand Down
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]
dockerblade = {path = ".", editable = true}
mypy = "*"

[requires]
python_version = "3.9"

[dev-packages]
mypy = "==0.770"
pytest = "==5.4.2"
ptpython = "==2.0.6"
tox = "==3.14.0"
coveralls = "==1.9.2"
pytest-cov = "==2.8.1"
sphinx-autodoc-typehints = "==1.10.3"
flake8 = "==3.8.2"
Sphinx = "==2.4.4"
Loading

0 comments on commit c3f159e

Please sign in to comment.