We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b22dceb commit 641e26bCopy full SHA for 641e26b
Makefile
@@ -0,0 +1,14 @@
1
+.PHONY: test
2
+test:
3
+ tox
4
+
5
+.PHONY: publish
6
+publish:
7
+ python setup.py sdist bdist_wheel
8
+ twine upload dist/*
9
10
+.PHONY: cleanup
11
+cleanup:
12
+ rm -rf airflow_python_sdk.egg-info/
13
+ rm -rf build/
14
+ rm -rf dist/
requirements.txt
@@ -2,3 +2,6 @@ nulltype
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.25.3
+tox >= 3.21.2
+wheel >= 0.36.2
+twine >= 3.3.0
0 commit comments