1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # -*- coding: utf-8 -*-
- from setuptools import setup
- import os
- long_description = open("README.rst").read()
- install_requires = ['neo>0.3.3',
- 'numpy>=1.8.2',
- 'quantities>=0.10.1',
- 'scipy>=0.14.0',
- 'six>=1.10.0']
- extras_require = {'pandas': ['pandas>=0.14.1'],
- 'docs': ['numpydoc>=0.5',
- 'sphinx>=1.2.2'],
- 'tests': ['nose>=1.3.3']}
- setup(
- name="elephant",
- version='0.4.1',
- packages=['elephant', 'elephant.test'],
- package_data = {'elephant' : [os.path.join('current_source_density_src', 'test_data.mat'),
- os.path.join('current_source_density_src', 'LICENSE'),
- os.path.join('current_source_density_src', 'README.md'),
- os.path.join('current_source_density_src', '*.py')]},
-
- install_requires=install_requires,
- extras_require=extras_require,
- author="Elephant authors and contributors",
- author_email="andrew.davison@unic.cnrs-gif.fr",
- description="Elephant is a package for analysis of electrophysiology data in Python",
- long_description=long_description,
- license="BSD",
- url='http://neuralensemble.org/elephant',
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: Science/Research',
- 'License :: OSI Approved :: BSD License',
- 'Natural Language :: English',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 3',
- 'Topic :: Scientific/Engineering']
- )
|