-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
755c9b2
commit 3d660b6
Showing
3 changed files
with
14 additions
and
8 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,10 @@ | ||
#!/bin/bash | ||
|
||
cd `dirname $0`; | ||
PACKAGE_PATH=`pwd` | ||
rm -rf "$PACKAGE_PATH/dist" | ||
python setup.py sdist bdist_wheel --universal | ||
twine upload dist/* | ||
rm -rf "$PACKAGE_PATH/build" | ||
rm -rf "$PACKAGE_PATH/dist" | ||
for f in `ls | grep \.egg-info`; do rm -rf "$PACKAGE_PATH/$f"; done |
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
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "postq", | ||
"version": "0.0.3", | ||
"description": "Job queue with API interface, database backend, and choice of job executors.", | ||
"version": "0.1.0", | ||
"description": "Job queue with DAG workflows, PostgreSQL backend, and choice of job executors.", | ||
"url": "https://github.com/kruxia/postq", | ||
"author": "Sean Harrison", | ||
"author_email": "[email protected]", | ||
"license": "MPL 2.0", | ||
"classifiers": [ | ||
"Development Status :: 1 - Planning", | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", | ||
"Programming Language :: Python :: 3" | ||
|