Revision e27067e3a7a54a50092b858a209454204093ad9c authored by jsiegle on 05 February 2019, 22:16:32 UTC, committed by jsiegle on 05 February 2019, 22:16:32 UTC
1 parent ffd9c3f
setup.py
from setuptools import setup, find_packages
setup(
name = 'ecephys_spike_sorting',
version = '0.1.0',
description = """Tools for spike-sorting Allen Institute Neuropixels data""",
author = "josh siegle",
author_email = "joshs@alleninstitute.org",
url = 'https://github.com/AllenInstitute/ecephys_spike_sorting',
packages = find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'ecephys_spike_sorting = ecephys_spike_sorting.__main__:main'
]
},
setup_requires=['pytest-runner'],
)
Computing file changes ...