Skip to content

Commit 00181bc

Browse files
committed
0.0.9.6
1 parent 7402376 commit 00181bc

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

docs/cite.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Cite
33

44
If you use PySiology in your work, please cite: ::
55
6-
Gabrieli G., Azhari A., Esposito G. (2020) PySiology: A Python Package for Physiological Feature Extraction. In: Esposito A., Faundez-Zanuy M., Morabito F., Pasero E. (eds) Neural Approaches to Dynamics of Signal Exchanges. Smart Innovation, Systems and Technologies, vol 151. Springer, Singapore
6+
Gabrieli G., Azhari A., Esposito G. (2020) PySiology: A Python Package for Physiological Feature Extraction. In: Esposito A., Faundez-Zanuy M., Morabito F., Pasero E. (eds) Neural Approaches to Dynamics of Signal Exchanges. Smart Innovation, Systems and Technologies, vol 151. Springer, Singapore. https://doi.org/10.1007/978-981-13-8950-4_35

pysiology/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from . import electrodermalactivity
44
from . import sampledata
55

6-
__version__ = '0.0.9.5' #Version Control
6+
__version__ = '0.0.9.6' #Version Control
77

88
print("Thank you for using Pysiology. If you use it in your work, please cite:")
9-
print("Gabrieli G., Azhari A., Esposito G. (2020) PySiology: A Python Package for Physiological Feature Extraction. In: Esposito A., Faundez-Zanuy M., Morabito F., Pasero E. (eds) Neural Approaches to Dynamics of Signal Exchanges. Smart Innovation, Systems and Technologies, vol 151. Springer, Singapore")
9+
print("Gabrieli G., Azhari A., Esposito G. (2020) PySiology: A Python Package for Physiological Feature Extraction. In: Esposito A., Faundez-Zanuy M., Morabito F., Pasero E. (eds) Neural Approaches to Dynamics of Signal Exchanges. Smart Innovation, Systems and Technologies, vol 151. Springer, Singapore. https://doi.org/10.1007/978-981-13-8950-4_35")

setup.py

+9-12
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import os
33

44
setup(name='pysiology',
5-
version='0.0.9.5',
5+
version='0.0.9.6',
66
description='Physiological signal processing in Python',
7-
long_description="A simple python package for physiological signal processing (ECG,EMG,GSR). Tutorial and documentation can be found on the Github Repository or at pysiology.rtfd.io. If you use this package in your work, please cite: Gabrieli G., Azhari A., Esposito G. (2020) PySiology: A Python Package for Physiological Feature Extraction. In: Esposito A., Faundez-Zanuy M., Morabito F., Pasero E. (eds) Neural Approaches to Dynamics of Signal Exchanges. Smart Innovation, Systems and Technologies, vol 151. Springer, Singapore",
7+
long_description="A simple python package for physiological signal processing (ECG,EMG,GSR). Tutorial and documentation can be found on the Github Repository or at pysiology.rtfd.io. If you use this package in your work, please cite: Gabrieli G., Azhari A., Esposito G. (2020) PySiology: A Python Package for Physiological Feature Extraction. In: Esposito A., Faundez-Zanuy M., Morabito F., Pasero E. (eds) Neural Approaches to Dynamics of Signal Exchanges. Smart Innovation, Systems and Technologies, vol 151. Springer, Singapore. https://doi.org/10.1007/978-981-13-8950-4_35",
88
url='https://github.com/Gabrock94/Pysiology',
99
download_url='https://github.com/Gabrock94/Pysiology/archive/0.9.5.tar.gz',
1010
author='Giulio Gabrieli',
@@ -41,20 +41,17 @@
4141
#Operating Systems
4242
'Operating System :: MacOS :: MacOS X',
4343
'Operating System :: Microsoft :: Windows',
44-
'Operating System :: Unix',
45-
'Operating System :: Linux',
44+
'Operating System :: POSIX :: Linux',
4645

4746
#Topic
48-
'Topic :: Signal Processing',
49-
'Topic :: Physiology',
50-
'Topic :: Psychology :: Neuroscience',
47+
'Topic :: Scientific/Engineering',
48+
'Topic :: Scientific/Engineering :: Medical Science Apps.',
5149

5250
#Intended Audience
53-
'Intended Audience :: Physiologists',
54-
'Intended Audience :: Psychologists :: Neuroscientists',
55-
'Intended Audience :: Data Scientists',
56-
'Intended Audience :: Cool people',
57-
'Intended Audience :: Researchers',
51+
'Intended Audience :: Science/Research',
52+
'Intended Audience :: Healthcare Industry',
53+
'Intended Audience :: Education',
54+
5855
],
5956
zip_safe=False,
6057
include_package_data=True,

0 commit comments

Comments
 (0)