Skip to content

Commit

Permalink
release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikus committed Oct 19, 2016
1 parent 98b884e commit 2816086
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 159 deletions.
264 changes: 109 additions & 155 deletions .idea/workspace.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
History
=======

0.1.0 (2016-10-17)
0.1.0 (2016-10-19)
------------------

* First release on PyPI.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ servedocs: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .

release: clean ## package and upload a release
python setup.py sdist upload
python setup.py bdist_wheel upload
python setup.py sdist
python setup.py bdist_wheel
twine upload dist/*

dist: clean ## builds source and wheel package
python setup.py sdist
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Sphinx==1.4.8
cryptography==1.5.2
PyYAML==3.12
pytest==3.0.3
twine==1.8.1
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ universal = 1

[flake8]
exclude = docs

[metadata]
description-file = README.rst
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
install_requires=requirements,
license="Apache Software License 2.0",
zip_safe=False,
keywords='dataquality dq dq-client',
keywords=['dataquality', 'dq', 'dq-client'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 2816086

Please sign in to comment.