-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
33 lines (28 loc) · 714 Bytes
/
Pipfile
File metadata and controls
33 lines (28 loc) · 714 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]
pytest = "*"
pylint = "*"
black = "*"
pytest-cov = "*"
twine = "*"
watchdog = "*"
mypy = "*"
boto3 = "*"
[packages]
flask = "*"
pyngrok = "*"
cfn-flip = "*"
[requires]
python_version = "3.8"
[pipenv]
allow_prereleases = true
[scripts]
test = "pytest test --cov=localfunk --cov-report term"
test-html = "pytest test --cov=localfunk --cov-report html:coverage/html"
test-watch = "watchmedo shell-command --patterns='*.py;*.txt' --recursive --command='pipenv run test-html -s'"
build = "python setup.py sdist"
deploy = "twine upload dist/*"
version = "python -c \"from localfunk.__data__ import version; print(version)\""