-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
44 lines (40 loc) · 914 Bytes
/
Pipfile
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
34
35
36
37
38
39
40
41
42
43
44
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
flake8 = ">=3.7"
flake8-black = "==0.1.1"
flake8-bugbear = ">=20.1"
flake8-builtins = ">=1.5"
flake8-comprehensions = ">=3.2"
flake8-docstrings = ">=1.5"
flake8-eradicate = "==0.3.0"
flake8-mutable = ">=1.2"
flake8-mypy = ">=17.8"
flake8-polyfill = ">=1.0"
flake8-quotes = ">=3.0"
pep8-naming = "==0.10.0"
black = ">=19.10b0"
pytest = ">=5.4"
[packages]
sail-on = {editable = true,path = "."}
requests = ">=2.23"
flask = ">=1.1"
importlib-metadata = ">=1.6"
requests_toolbelt = ">=0.9.1"
nltk = ">=3.5"
numpy = "==1.19.2"
scikit_learn = ">=0.20.4"
python-dateutil = "==2.8.1"
cachetools = "==4.1.1"
gunicorn = ">=20.0.4"
requests-toolbelt = "==0.9.1"
pandas == "==1.1.5"
[pipenv]
allow_prereleases = true
[scripts]
lint = "flake8"
format = "black ."
test = "pytest"
typecheck = "mypy -p sail_on --disallow-untyped-defs"