Skip to content

Commit

Permalink
release version 2019.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danh91 committed May 29, 2019
1 parent 1245dea commit aa6e6be
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
12 changes: 11 additions & 1 deletion scripts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ test() {
}

build() {
python setup.py sdist bdist_wheel
rm -r ./dist || true
python -m pip install --upgrade setuptools wheel twine
python setup.py bdist_wheel
}

init() {
Expand All @@ -16,3 +18,11 @@ init() {
pip install -r requirements.txt &&
pip install -e .
}

release_test() {
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
}

release() {
python -m twine upload dist/*
}
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
from setuptools import setup


with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='jstruct',
version='1.0.0',
version='2019.5.1',
description='Readable serializable and deserializable Python nested models',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/DanH91/jstruct',
author='DanH91',
author_email='danielk.developer@gmail.com',
Expand Down

0 comments on commit aa6e6be

Please sign in to comment.