forked from open-ephys/open-ephys-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 826 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='open-ephys-python-tools',
version='0.1.0',
description='Software tools for interfacing with the Open Ephys GUI',
url='http://github.com/open-ephys/open-ephys-python-tools',
author='Josh Siegle',
author_email='josh@open-ephys.org',
license='MIT',
packages=['open_ephys.analysis',
'open_ephys.analysis.formats',
'open_ephys.analysis.formats.helpers',
'open_ephys.control',
'open_ephys.streaming'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"],
install_requires=[
'numpy',
'pandas',
'h5py',
'zmq'])