Commit 5e53fcd 1 parent 55471a8 commit 5e53fcd Copy full SHA for 5e53fcd
File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -33,16 +33,16 @@ in order to gather all the required packages all together.
33
33
34
34
SIPPY is distributed as packed file SIPPY.zip (download it from [ here] ( https://github.com/CPCLAB-UNIPI/SIPPY ) ) that contains the following items:
35
35
* ` 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
37
37
identifications.
38
38
* ` Examples/armaxMIMO.py ` : example of usage of the Identification_code for ARMAX systems (multi input-multi output case).
39
39
* ` Examples/arxMIMO.py ` : example of usage of the Identification_code for ARX systems (multi input-multi output case).
40
40
* ` Examples/armax.py ` : example of usage of the Identification_code for ARMAX systems (single input-single output case, using the information criteria).
41
41
* ` Examples/SS.py ` : example of usage of the Identification_code for State-space systems.
42
42
* ` SIPPY/functionset.py ` : file containing most of the functions used by the identification functions
43
43
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
45
45
and other useful functions for state space models (see the user_guide for the usage).
46
46
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
48
48
not to use them.
Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = "sippy" ,
8
- version = "0.1.0 " ,
8
+ version = "0.1.1 " ,
9
9
author = "Giuseppe Armenise" ,
10
10
description = "Systems Identification Package for Python" ,
11
11
long_description = readme ,
12
12
long_description_content_type = 'text/markdown' ,
13
13
url = "https://github.com/CPCLAB-UNIPI/sippy" ,
14
14
packages = setuptools .find_packages (),
15
- python_requires = "==2.7,>=3.5,<=3.6 " ,
15
+ python_requires = "==2.7,>=3.5,<=3.7 " ,
16
16
install_requires = (
17
17
"numpy" ,
18
18
"scipy" ,
27
27
"Programming Language :: Python :: 2.7" ,
28
28
"Programming Language :: Python :: 3.5" ,
29
29
"Programming Language :: Python :: 3.6" ,
30
+ "Programming Language :: Python :: 3.7" ,
30
31
"Operating System :: OS Independent" ,
31
32
),
32
33
)
You can’t perform that action at this time.
0 commit comments