-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.52 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.52 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
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
setup(
# Some general metadata. By convention, a plugin is named:
# opensesame-plugin-[plugin name]
name='opensesame-plugin-Pulse_EVT2',
version='1.0.0',
description='Send markers through an EVT2 (RUG USB interface)',
author='Mark Span',
author_email='m.m.span@rug.nl',
url='https://github.com/markspan/EVT2',
# Classifiers used by PyPi if you upload the plugin there
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Environment :: Win32 (MS Windows)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
data_files=[
(
'share/opensesame_plugins/Pulse_EVT2',
[
'opensesame_plugins/Pulse_EVT2/Pulse_EVT2.md',
'opensesame_plugins/Pulse_EVT2/Pulse_EVT2.png',
'opensesame_plugins/Pulse_EVT2/Pulse_EVT2_large.png',
'opensesame_plugins/Pulse_EVT2/Pulse_EVT2.py',
'opensesame_plugins/Pulse_EVT2/libevt.py',
'opensesame_plugins/Pulse_EVT2/info.yaml',
'opensesame_plugins/Pulse_EVT2/dll/EventExchanger.dll',
'opensesame_plugins/Pulse_EVT2/dll/HidSharp.dll',
'opensesame_plugins/Pulse_EVT2/dll/HidSharp.DeviceHelpers.dll',
'Example.osexp',
'License.HidSharp',
]
)
]
)