forked from psychopy/psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·81 lines (74 loc) · 2.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
"""Requires setuptools and uses the manifest.in file for data files"""
from setuptools import setup, Extension, find_packages
################
import glob, os
from sys import platform, argv
#regenerate __init__.py only if we're in the source repos (not in a source zip file)
try:
import createInitFile#won't exist in a sdist.zip
writeNewInit=True
except:
writeNewInit=False
if writeNewInit:
#determine what type of dist is being created
#(install and bdist might do compiliing and then build platform is needed)
for arg in argv:
if arg.startswith('bdist') or arg.startswith('install'):
dist='bdist'
else: dist='sdist'
vStr = createInitFile.createInitFile(dist=dist)
else:
#import the metadata from file we just created (or retrieve previous)
f = open('psychopy/__init__.py', 'r')
vStr = f.read()
f.close()
exec(vStr)
#define the extensions to compile if necess
packages = find_packages()
#for the source dist this doesn't work - use the manifest.in file
dataExtensions = ['*.txt', '*.ico', '*.jpg', '*.gif', '*.png', '*.mov', '*.spec', '*.csv','*.psyexp', '*.xlsx']
dataFiles = []
scripts = ['psychopy/app/psychopyApp.py']
if platform=='win32':
#you need the c extension for bits++ if you want to change bits modes, but not otherwise
#cExtensions.append(Extension('psychopy.ext._bits',
#sources = [os.path.join('psychopy','ext','_bits.c')],
#libraries=['bits']))
# only install post_install if on windows
scripts += ['psychopy_post_inst.py']
elif platform=='darwin':
#from py2app import bdist_mpkg
dataExtensions.extend(['*.icns'])
elif platform=='posix':
dataFiles += [('share/applications', ['psychopy/app/Resources/psychopy.desktop']),
('share/pixmaps', ['psychopy/app/Resources/psychopy.png'])]
setup(name="PsychoPy",
packages=packages,
scripts = scripts,
include_package_data =True,
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': dataExtensions,
},
data_files = dataFiles,
#metadata
version = __version__,
description = "Psychophysics toolkit for Python",
long_description = "PsychoPy uses OpenGL and Python to create a toolkit" + \
" for running psychology/neuroscience/psychophysics experiments",
author= __author__,
author_email= __author_email__,
maintainer_email= __maintainer_email__,
url=__url__,
license=__license__,
download_url=__downloadUrl__,
classifiers=['Development Status :: 4 - Beta',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python'],
)
#remove unwanted info about this system post-build
if writeNewInit:
createInitFile.createInitFile(dist=None)