Skip to content

Commit

Permalink
Add assets from original amclient repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-spencer committed Mar 2, 2019
1 parent 7e7191f commit 2c9c503
Show file tree
Hide file tree
Showing 9 changed files with 1,237 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.PHONY: clean package package-deps package-source package-upload package-wheel

package-deps:
python3 -m pip install --upgrade twine wheel

package-source:
python3 setup.py sdist

package-wheel: package-deps
python3 setup.py bdist_wheel --universal

package-upload: package-deps package-source package-wheel
twine upload dist/* --repository-url https://upload.pypi.org/legacy/

package: package-upload

clean:
rm -rf amclient.egg-info/
rm -rf build/
rm -rf dist/
9 changes: 9 additions & 0 deletions amclient/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Import the primary AMClient script.
from amclient import AMClient

# If the additional module commands need to be included they can also be
# included here.
__all__ = []
Loading

0 comments on commit 2c9c503

Please sign in to comment.