-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 974 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (32 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="ephys_analyzer",
version="0.1.0",
description="A GUI tool for analyzing electrophysiology data",
author="Leonardo Garma",
author_email="leonardogarma@gmail.com",
packages=find_packages(),
install_requires=[
'numpy>=1.21.0',
'scipy>=1.7.0',
'matplotlib>=3.4.2',
'pandas>=1.3.0',
'openpyxl>=3.0.7',
'intan_reader>=0.1.0',
],
python_requires='>=3.8',
entry_points={
'console_scripts': [
'ephys_analyzer=main:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)