mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-16 03:17:04 +01:00
Alan Orth
a835b0fdc5
When I originally created the pipenv environment I used the standard pip requirements.txt that I already had, which captured all the mod- ules and their exact versions at the time. This makes it hard to se- parate the project's actual dependencies from the dependencies' dep- endencies, complicating the Pipfile and making it hard to update mo- dule versions later. I've re-created the environment with the following commands: $ pipenv install gunicorn falcon psycopg2-binary git+https://github.com/alanorth/SolrClient.git@kazoo-2.5.0#egg=SolrClient $ pipenv install --dev ipython flake8 pytest
19 lines
319 B
TOML
19 lines
319 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
gunicorn = "*"
|
|
falcon = "*"
|
|
"psycopg2-binary" = "*"
|
|
solrclient = {ref = "kazoo-2.5.0", git = "https://github.com/alanorth/SolrClient.git"}
|
|
|
|
[dev-packages]
|
|
ipython = "*"
|
|
"flake8" = "*"
|
|
pytest = "*"
|
|
|
|
[requires]
|
|
python_version = "3.7"
|