forked from yampelo/beagle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
50 lines (45 loc) · 1.01 KB
/
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
45
46
47
48
49
50
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
networkx = "*"
loguru = "*"
python-evtx = "*"
lxml = "*"
neo4j = "*"
flask = "*"
flask-sqlalchemy = "*"
requests = "*"
gunicorn = "*"
future = "==0.16.0"
pydgraph = "*"
pandas = "*"
graphistry = {extras = ["networkx"],version = "==0.9.63"}
splunk-sdk = "*"
elasticsearch = "*"
flask-cors = "*"
[dev-packages]
"flake8" = "*"
black = "*"
"flake8-type-annotations" = "*"
ipython = "*"
grave = "*"
matplotlib = "*"
numpy = "*"
scipy = "*"
mypy = "*"
pytest = "==4.0.0"
sphinx = "*"
recommonmark = "*"
ipykernel = "*"
mock = "*"
[requires]
python_version = "3.6"
[pipenv]
allow_prereleases = true
[scripts]
web = "bash -c 'export FLASK_ENV=development FLASK_APP=beagle/web/server && flask run --port 8000 --host 0.0.0.0'"
web_prod = "bash -c 'gunicorn --bind 0.0.0.0:8000 -w 1 beagle.web.wsgi:app'"
build_js = "bash -c 'cd ~/dev/beagle/beagle/web/static; npm run build'"
build_docs = "bash -c 'sphinx-apidoc -o docs beagle/ -f ; cd docs ; make html'"