forked from axopy/pytrigno
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 661 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (20 loc) · 661 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
from setuptools import setup
setup(
name='pytrigno',
version='0.1',
description='Simple Python interface to the Delsys wireless EMG system.',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='electromyography',
url='https://github.com/ucdrascal/pytrigno',
author='Kenneth Lyons',
author_email='ixjlyons@gmail.com',
license='MIT',
py_modules=['pytrigno']
)