-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (39 loc) · 1.63 KB
/
setup.py
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
37
38
39
40
41
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='[email protected]',
url='https://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~=0.1.1', 'kivy~=2.0.0', 'numpy',
'scikit-image',
'psutil', 'nixio==1.5.0', 'tqdm', 'scipy', 'kivy_garden.graph~=0.4.0',
'kivy_garden.collider~=0.1.0',
'McsPyDataTools', 'kivy_garden.drag_n_drop~=0.1.0',
'kivy_garden.painter~=0.2.0', 'trio', 'cpl_media~=0.1.4',
'tree-config~=0.1.1', 'pyusb', 'orjson'],
extras_require={
'dev': [
'pytest>=3.6', 'pytest-cov', 'flake8', 'sphinx-rtd-theme',
'coveralls', 'trio', 'pytest-trio', 'pyinstaller',
'pytest-kivy~=0.1.0.dev2', 'pytest-dependency', 'docutils',
'sphinx'],
},
package_data={'ceed': ['data/*', '*.kv', '**/*.kv']},
entry_points={'console_scripts': ['ceed=ceed.main:run_app']},
)