-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 917 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 917 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
25
26
27
28
29
30
31
32
33
34
35
36
#from setuptools import setup
from py2exe.build_exe import py2exe
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pyVisualStim',
version='0.1',
description='Code for visual stimulation',
long_description=readme(),
classifiers=[
'Development Status :: 1'
],
url='https://github.com/Sebasto7/pyVisualStim',
author='Sebastian Molina-Obando',
author_email='sebastian.molina.obando@gmail.com',
license='',
packages=['twopstim'],
install_requires=[
'PsychoPy3',
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False,
console = ["run.py"],
options = {
"py2exe":{
"skip_archive": True,
"optimize": 2
}
}
)