Skip to content

Commit 5e53fcd

Browse files
authored
Updating SIPPY version
1 parent 55471a8 commit 5e53fcd

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ in order to gather all the required packages all together.
3333

3434
SIPPY is distributed as packed file SIPPY.zip (download it from [here](https://github.com/CPCLAB-UNIPI/SIPPY)) that contains the following items:
3535
* `user_guide.pdf`: documentation for Identification_code usage.
36-
* `SIPPY/__init__.py`: main file containing the function that has to be recalled to perform the
36+
* `sippy/__init__.py`: main file containing the function that has to be recalled to perform the
3737
identifications.
3838
* `Examples/armaxMIMO.py`: example of usage of the Identification_code for ARMAX systems (multi input-multi output case).
3939
* `Examples/arxMIMO.py`: example of usage of the Identification_code for ARX systems (multi input-multi output case).
4040
* `Examples/armax.py`: example of usage of the Identification_code for ARMAX systems (single input-single output case, using the information criteria).
4141
* `Examples/SS.py`: example of usage of the Identification_code for State-space systems.
4242
* `SIPPY/functionset.py`: file containing most of the functions used by the identification functions
4343
and other useful functions (see the user_guide for the usage).
44-
* `SIPPY/functionsetSIM.py`: additional functions used by the Subspace identification functions
44+
* `sippy/functionsetSIM.py`: additional functions used by the Subspace identification functions
4545
and other useful functions for state space models (see the user_guide for the usage).
4646

47-
In the folder `SIPPY/` there are other files `.py`, that are called by the main file, so the user has
47+
In the folder `sippy/` there are other files `.py`, that are called by the main file, so the user has
4848
not to use them.

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55

66
setuptools.setup(
77
name="sippy",
8-
version="0.1.0",
8+
version="0.1.1",
99
author="Giuseppe Armenise",
1010
description="Systems Identification Package for Python",
1111
long_description=readme,
1212
long_description_content_type='text/markdown',
1313
url="https://github.com/CPCLAB-UNIPI/sippy",
1414
packages=setuptools.find_packages(),
15-
python_requires="==2.7,>=3.5,<=3.6",
15+
python_requires="==2.7,>=3.5,<=3.7",
1616
install_requires=(
1717
"numpy",
1818
"scipy",
@@ -27,6 +27,7 @@
2727
"Programming Language :: Python :: 2.7",
2828
"Programming Language :: Python :: 3.5",
2929
"Programming Language :: Python :: 3.6",
30+
"Programming Language :: Python :: 3.7",
3031
"Operating System :: OS Independent",
3132
),
3233
)

0 commit comments

Comments
 (0)