diff --git a/setup.py b/setup.py index 2b862aa..c91bce6 100644 --- a/setup.py +++ b/setup.py @@ -1,52 +1,53 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: Theo Lemaire # @Date: 2017-06-13 09:40:02 # @Email: theo.lemaire@epfl.ch # @Last Modified by: Theo Lemaire -# @Last Modified time: 2018-09-23 16:44:41 +# @Last Modified time: 2019-06-02 15:44:57 import os from setuptools import setup def readme(): with open('README.md', encoding="utf8") as f: return f.read() setup( name='PySONIC', version='1.0', description='Python implementation of the **multi-Scale Optimized Neuronal Intramembrane \ Cavitation** (SONIC) model to compute individual neural responses to acoustic \ stimuli, as predicted by the *intramembrane cavitation* hypothesis.', long_description=readme(), url='???', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'Programming Language :: Python :: 3', 'Topic :: Scientific/Engineering :: Physics' ], keywords=('SONIC NICE acoustic ultrasound ultrasonic neuromodulation neurostimulation excitation\ computational model intramembrane cavitation'), author='Théo Lemaire', author_email='theo.lemaire@epfl.ch', license='MIT', packages=['PySONIC'], scripts=['scripts/{}'.format(x) for x in os.listdir('scripts')], install_requires=[ 'numpy>=1.10', 'scipy>=0.17', 'matplotlib>=2' 'pandas>=0.22.0', 'openpyxl>=2.4', 'pyyaml>=3.11', 'pycallgraph>=1.0.1', 'colorlog>=3.0.1', - 'progressbar2>=3.18.1', + 'tqdm>=4.3', + 'nolds>=0.5', 'lockfile>=0.1.2' ], zip_safe=False )