forked from SpotlightData/nanowire-plugin-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
26 lines (21 loc) · 657 Bytes
/
Copy pathmakefile
File metadata and controls
26 lines (21 loc) · 657 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
VERSION := $(shell cat VERSION)
install:
sudo ./setup.py install
upload:
mc cp tester/testfile.txt local/j-00000000-0000-0000-0000-000000000000/t-00000000-0000-0000-0000-000000000000/input/source/testfile.txt
test: install
AMQP_HOST="localhost" \
AMQP_PORT="5672" \
AMQP_USER="guest" \
AMQP_PASS="guest" \
MINIO_HOST="localhost" \
MINIO_PORT="9000" \
MINIO_ACCESS="default" \
MINIO_SECRET="12345678" \
MINIO_SCHEME="http" \
MONITOR_URL="http://localhost:7380" \
./tester/__init__.py
release:
./setup.py sdist bdist_wheel
-twine upload dist/nanowire_plugin-$(VERSION)-py3-none-any.whl
twine upload dist/nanowire_plugin-$(VERSION).tar.gz