diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-09 14:41:47 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-01-09 14:41:47 -0700 |
| commit | f0d2049a3f083fbea7fc7962850f54b3aee69909 (patch) | |
| tree | f35ed1afaac3f56ae040148661ff75abc807e229 | |
| parent | 0d08930217a6e5eceebfb87f60a803f841fde174 (diff) | |
Add makefile to build package
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e8957ee --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*dist/ +*egg-info/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..aeac6b2 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +all : build + +build : + cd example_pkg && python3 setup.py sdist bdist_wheel |
