forked from michaelhly/solana-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
42 lines (37 loc) · 762 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[pipenv]
allow_prereleases = true
[scripts]
install-ci-deps = "pipenv install --dev --skip-lock black pydocstyle flake8 pylint mypy pytest pytest-docker"
update-localnet = "sh bin/localnet.sh update"
start-localnet = "sh bin/localnet.sh up"
stop-localnet = "sh bin/localnet.sh down"
[dev-packages]
jupyterlab = "*"
black = "*"
pytest = "*"
pylint = "*"
mypy = "*"
pydocstyle = "*"
flake8 = "*"
isort = "*"
pytest-docker = "*"
sphinx = "*"
twine = "*"
setuptools = "*"
bump2version = "*"
types-requests = "*"
notebook = "*"
pytest-asyncio = "*"
[packages]
pynacl = "*"
base58 = "*"
requests = "*"
construct = "*"
typing-extensions = "*"
httpx = "*"
[requires]
python_version = "3.7"