Skip to content

Commit

Permalink
Additional research (See pypa/pipenv#598 and https://stackoverflow.co…
Browse files Browse the repository at this point in the history
…m/questions/46330327/please-explain-the-usage-of-pipfile-and-pipfile-lock) suggests the Pipenv should be versioned as well.

This is to help others build the tool easily. I've decided to start tracking the Pipenv as such, however as of this commit, the pipenv contains far from all dependencies. I will be slowly working those into the pipenv.
  • Loading branch information
Hanse00 committed May 26, 2018
1 parent 358ba6a commit 05a73ff
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# Don't version virtual environment
venv/

# Don't version pipenv
Pipfile*

# Don't version client secrets and user credentials
dev_client_secret.json
storage.json
Expand Down
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[dev-packages]
pylint = "*"

[packages]

[requires]
python_version = "3.6"
98 changes: 98 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 05a73ff

Please sign in to comment.