forked from matham/ceed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.33 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.33 KB
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
import ceed
with open('README.rst') as fh:
long_description = fh.read()
setup(
name='Ceed',
version=ceed.__version__,
author='Matthew Einhorn',
author_email='moiein2000@gmail.com',
url='http://matham.github.io/ceed/',
license='MIT',
description='Slice stimulation and recordings.',
long_description=long_description,
classifiers=['License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: System :: Hardware',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: Microsoft :: Windows',
'Intended Audience :: Developers'],
packages=find_packages(),
install_requires=[
'ffpyplayer', 'base_kivy_app', 'kivy', 'numpy', 'scikit-image',
'psutil', 'nixio', 'tqdm', 'scipy', 'kivy_garden.graph~=0.4.0',
'kivy_garden.collider~=0.1.0', 'pytest',
'pytest-trio', 'McsPyDataTools', 'kivy_garden.drag_n_drop~=0.1.0',
'pytest-cov', 'kivy_garden.painter~=0.2.0', 'trio', 'sphinx-rtd-theme',
'cpl_media'],
package_data={'ceed': ['data/*', '*.kv']},
entry_points={'console_scripts': ['ceed=ceed.main:run_app']},
)