-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
82 lines (72 loc) · 2.13 KB
/
Makefile
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.PHONY: clean
clean: clean-build clean-pyc clean-test clean-docs
.PHONY: clean-build
clean-build:
rm -fr build/
rm -fr dist/
rm -fr .eggs/
rm -fr pip-wheel-metadata
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -fr {} +
rm -fr Pipfile.lock
.PHONY: clean-docs
clean-docs:
rm -fr site/
.PHONY: clean-pyc
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
find . -name '.DS_Store' -exec rm -fr {} +
.PHONY: clean-test
clean-test:
rm -fr .tox/
rm -f .coverage
find . -name ".coverage*" -not -name ".coveragerc" -exec rm -fr "{}" \;
rm -fr coverage.xml
rm -fr htmlcov/
rm -fr .hypothesis
rm -fr .pytest_cache
rm -fr .mypy_cache/
find . -name 'log.txt' -exec rm -fr {} +
find . -name 'log.*.txt' -exec rm -fr {} +
.PHONY: lint
lint:
black packages/collectooor/contracts packages/collectooor/skills/monitor
isort packages/collectooor
flake8 packages/collectooor
darglint packages/collectooor
.PHONY: pylint
pylint:
pylint -j4 packages/collectooor
.PHONY: static
static:
mypy packages/collectooor --disallow-untyped-defs
v := $(shell pip -V | grep virtualenvs)
.PHONY: new_env
new_env: clean
if [ ! -z "$(which svn)" ];\
then\
echo "The development setup requires SVN, exit";\
exit 1;\
fi;\
if [ -z "$v" ];\
then\
pipenv --rm;\
pipenv --python 3.8;\
pipenv install --dev --skip-lock;\
echo "Enter virtual environment with all development dependencies now: 'pipenv shell'.";\
else\
echo "In a virtual environment! Exit first: 'exit'.";\
fi
.PHONY: new_agent
new_agent:
rm -rf collectooor
aea fingerprint by-path packages/collectooor/skills/monitor
aea fingerprint by-path packages/collectooor/contracts/artblocks
aea fingerprint by-path packages/collectooor/contracts/artblocks_periphery
aea fetch --local collectooor/collectooor
cp config/ethereum_private_key.txt collectooor/ethereum_private_key.txt
cd collectooor; aea add-key ethereum
cd collectooor; aea config set vendor.fetchai.connections.ledger.config.ledger_apis.ethereum.address https://ropsten.infura.io/v3/API_KEY_HERE