13 lines
466 B
Python
13 lines
466 B
Python
from distutils.core import setup
|
|
from setuptools import find_packages
|
|
|
|
exec(open('fishbook/version.py').read())
|
|
|
|
setup(name='fishbook',
|
|
version=__version__,
|
|
packages=find_packages(exclude=['contrib', 'doc', 'tests*']),
|
|
description='Database providing an overview of the electrophysiological data recorded in the group.',
|
|
author='Jan Grewe',
|
|
requires=['datajoint', 'nixio', 'numpy', 'PyYAML', 'backports-datetime-fromisoformat']
|
|
)
|