Skip to content

Commit ee6997c

Browse files
author
Felix Riese
committed
Preparations for new release
1 parent 1253513 commit ee6997c

3 files changed

Lines changed: 29 additions & 8 deletions

File tree

CHANGELOG.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Change Log
22
==========
33

4-
[1.0.0] - 2019-03-27
4+
[1.0.1] - 2019-03-26
5+
- [ADDED] Config file for Travis
6+
- [FIXED] Requirements for read-the-docs documentation
7+
8+
[1.0.0] - 2019-03-26
59
- Initial release

README.rst

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2609131.svg
2-
:target: https://doi.org/10.5281/zenodo.2609131
2+
:target: https://doi.org/10.5281/zenodo.2609131
3+
:alt: Zenodo DOI
4+
35
.. image:: https://travis-ci.org/felixriese/susi.svg?branch=master
46
:target: https://travis-ci.org/felixriese/susi
7+
:alt: Travis.CI
8+
9+
.. image:: https://readthedocs.org/projects/susi/badge/?version=latest
10+
:target: https://susi.readthedocs.io/en/latest/?badge=latest
11+
:alt: Documentation Status
12+
13+
|
514
615
SUSI: SUpervised Self-organIzing maps in Python
716
===============================================
@@ -24,7 +33,7 @@ The class structure is set up as follows:
2433

2534

2635
:Paper:
27-
to be published
36+
Felix M. Riese and S. Keller, "SUSI: Supervised Self-Organizing Maps for Regression and Classification in Python", 2019, Submitted to an ISPRS conference.
2837

2938
:License:
3039
`3-Clause BSD license <LICENSE>`_
@@ -33,7 +42,11 @@ The class structure is set up as follows:
3342
`Felix M. Riese <mailto:github@felixriese.de>`_,
3443
`Sina Keller <mailto:sina.keller@kit.edu>`_
3544

36-
:Citation: see `Citation`_ and in the `bibtex <bibliography.bib>`_ file
45+
:Citation:
46+
see `Citation`_ and in the `bibtex <bibliography.bib>`_ file
47+
48+
:Documentation:
49+
`read the docs <https://susi.readthedocs.io/en/latest/readme.html>`_
3750

3851
Installation
3952
------------
@@ -103,7 +116,7 @@ Felix M. Riese and S. Keller, "SUSI: Supervised Self-Organizing Maps for Regress
103116

104117
.. code:: bibtex
105118
106-
@article{riese2019susi,
119+
@article{riesekeller2019susi,
107120
author = {Riese, Felix~M. and Keller, Sina},
108121
title = {SUSI: Supervised Self-Organizing Maps for Regression and Classification in Python},
109122
year = {2019},
@@ -120,11 +133,11 @@ Felix M. Riese, "SUSI: SUpervised Self-organIzing maps in Python", [10.5281/zeno
120133

121134
.. code:: bibtex
122135
123-
@misc{riese2019susi,
136+
@misc{riese2019susicode,
124137
author = {Riese, Felix~M.},
125138
title = {{SUSI: SUpervised Self-organIzing maps in Python}},
126139
year = {2019},
127140
DOI = {10.5281/zenodo.2609130},
128141
publisher = {Zenodo},
129142
howpublished = {\href{https://doi.org/10.5281/zenodo.2609130}{doi.org/10.5281/zenodo.2609130}}
130-
}
143+
}

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setuptools.setup(
1616
name="susi",
17-
version="1.0.0",
17+
version="1.0.1",
1818
author="Felix M. Riese",
1919
author_email="github@felixriese.de",
2020
description="Python package for unsupervised and supervised self-organizing maps (SOM)",
@@ -29,6 +29,10 @@
2929
packages=setuptools.find_packages(),
3030
classifiers=[
3131
"Programming Language :: Python :: 3",
32+
"Programming Language :: Python :: 3.4",
33+
"Programming Language :: Python :: 3.5",
34+
"Programming Language :: Python :: 3.6",
35+
"Programming Language :: Python :: 3.7",
3236
"Environment :: Console",
3337
"Intended Audience :: Developers",
3438
"Intended Audience :: Education",

0 commit comments

Comments
 (0)