-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add assets from original amclient repo
- Loading branch information
1 parent
7e7191f
commit 2c9c503
Showing
9 changed files
with
1,237 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__ = [] |
Oops, something went wrong.