-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 901 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 901 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
34
35
36
from setuptools import setup, find_packages
setup(
name='stimpack',
version='0.1.1',
description='Precise and flexible generation of stimuli for neuroscience experiments.',
url='https://github.com/ClandininLab/stimpack',
author='Minseung Choi',
author_email='minseung@stanford.edu',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'pandas',
'matplotlib',
'platformdirs',
'PyQT6',
'h5py',
'pyYaml',
'moderngl',
'PyOpenGL; platform_system=="Linux"',
'scikit-image',
],
entry_points={
'console_scripts': [
'stimpack=stimpack.experiment.gui:main'
]
},
include_package_data=True,
zip_safe=False,
project_urls={
'Documentation': 'https://stimpack.readthedocs.io/en/latest/index.html',
}
)