Skip to content

Commit

Permalink
DataCite v0.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Holm Nielsen <[email protected]>
  • Loading branch information
lnielsen committed Feb 25, 2015
1 parent 3bf2375 commit c1c96d4
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Changes
=======

Version 0.1 (released FIXME):
Version 0.1 (released 2015-02-25):

- Initial public release on PyPI.
- Initial public release.
39 changes: 39 additions & 0 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
=============================
DataCite v0.1.0 is released
=============================

DataCite v0.1.0 was released on February 25, 2015.

About
-----

Python API wrapper for the DataCite Metadata Store API.

What's new
----------

- Initial public release.

Installation
------------

$ pip install datacite

Documentation
-------------

http://datacite.readthedocs.org/en/v0.1.0

Homepage
--------

https://github.com/inveniosoftware/datacite

Good luck and thanks for choosing DataCite.

| Invenio Development Team
| Email: [email protected]
| IRC: #invenio on irc.freenode.net
| Twitter: http://twitter.com/inveniosoftware
| GitHub: http://github.com/inveniosoftware
| URL: http://invenio-software.org
2 changes: 1 addition & 1 deletion datacite/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# Do not change the format of this next line. Doing so risks breaking
# setup.py and docs/conf.py

__version__ = "0.1.0.dev20140223"
__version__ = "0.1.0"
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
source-dir = docs/
build-dir = docs/_build
all_files = 1

[bdist_wheel]
universal=1
12 changes: 12 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,15 @@ deps = pytest
pytest-cov
pytest-cache
commands = {envpython} setup.py test


# See https://wiki.python.org/moin/TestPyPI
[testenv:release]
deps =
twine >= 1.4.0
wheel
commands =
/bin/rm -Rf {toxinidir}/dist
{envpython} setup.py clean --all
{envpython} setup.py sdist bdist_wheel
twine upload -r pypitest {posargs} dist/*

0 comments on commit c1c96d4

Please sign in to comment.