remove obsolete requirements, set up pipenv with dependencies in Pipfile.

This commit is contained in:
Marcus Scholz 2020-07-29 10:44:16 +02:00
parent d4ecc4c9de
commit 17d8b28853
3 changed files with 14 additions and 3 deletions

2
.gitignore vendored
View File

@ -104,7 +104,7 @@ ipython_config.py
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

13
Pipfile Normal file
View File

@ -0,0 +1,13 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
django = "*"
django-thumbs-v2 = "*"
[requires]
python_version = "3"

View File

@ -1,2 +0,0 @@
django
django-thumbs-v2