Page MenuHomec4science

setup.py
No OneTemporary

File Metadata

Created
Sun, May 19, 18:58

setup.py

#!/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: 2017-08-22 19:21:59
from setuptools import setup
def readme():
with open('README.rst', encoding="utf8") as f:
return f.read()
setup(name='PointNICE',
version='1.0',
description='Optimized Python implementation of the NICE model',
long_description=readme(),
url='???',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Physics'
],
keywords=('ultrasound ultrasonic neuromodulation neurostimulation excitation\
biophysical model intramembrane cavitation NICE'),
author='Théo Lemaire',
author_email='theo.lemaire@epfl.ch',
license='MIT',
packages=['PointNICE'],
install_requires=[
'numpy>=1.10',
'scipy>=0.17',
'matplotlib>=2',
'openpyxl>=2.4',
'pyyaml>=3.11'
],
zip_safe=False)

Event Timeline