forked from kidzik/event-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 946 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
__version__ = "0.9.1"
setup(name='eventdetector',
version=__version__,
description='Deep Learning models for automatic gait event annotation',
author='Lukasz Kidzinski',
author_email='[email protected]',
url='http://github.com/kidzik/event-detector',
downlnoad_url='https://github.com/kidzik/event-detector/archive/v0.9.tar.gz',
license='Apache 2.0',
packages=find_packages(),
package_data={},
include_package_data=True,
install_requires=['h5py','numpy>=1.13','tensorflow','keras>=2.0.6',''],
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
scripts=['scripts/event-detector']
)