forked from Madoshakalaka/pipenv-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
33 lines (30 loc) · 945 Bytes
/
Pipfile
File metadata and controls
33 lines (30 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pipenv-setup = { editable = true, path = "." }
pytest = { markers = "python_version>='3.6'", version = "~=5.2" }
pytest-mypy = { markers = "python_version>='3.5'", version = ">=0.8" }
pytest-cov = "~=2.7"
pytest-datadir = "~=1.3"
pytest-xdist = "~=1.29"
tox = "~=3.14"
autopep8 = "~=1.4"
types-six = "*"
[packages]
pipfile = "~=0.0"
black = { markers = "python_version>='3.6'", version = "==19.10b0" }
colorama = "~=0.4"
packaging = "~=20.0"
requirementslib = "~=1.5"
vistir = "~=0.4"
autopep8 = { markers = "python_version<'3.6'", version = "~=1.4" }
six = "~=1.12"
typing = { markers = "python_version<'3.7'", version = "~=3.7" }
chardet = ">=3.0.0, <=5.0.0"
pyparsing = "!=3.0.5"
[scripts]
# use this to sync this pipfile to setup.py, explained in CONTRIBUTING.md
# `$ pipenv run sync-deps`
sync-deps = 'python -m pipenv_setup sync --dev --pipfile'