-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name='neurokin',
version='0.0.1',
description='package to support neural and data analysis',
url='https://github.com/WengerLab/neurokin',
author='Elisa L. Garulli',
author_email='e.garulli@charite.de',
license='BSD 2-clause',
packages=find_packages('neurokin'),
package_dir={'': 'neurokin'},
install_requires=['c3d==0.5.1',
'dlc2kinematics',
'fooof==1.0.0',
'mock==4.0.3',
'munkres==1.1.4',
'sip==4.19.13',
'tdt==0.5.3',
'tornado==6.1',
'wincertstore==0.2'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)