-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·91 lines (88 loc) · 3.5 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
82
83
84
85
86
87
88
89
90
91
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='geomexp',
version='0.2.3',
description='2-d gemometric illusion experiments',
url='https://github.com/mm-crj/geomexp',
author='Mainak Mandal',
author_email='mm.crjx@gmail.com',
license='GNU LGPLv3',
long_description=long_description,
# long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(exclude=['build', 'docs', 'templates']),
package_data={
'data':
[],
'images/baldwin':
['images/baldwin/bw_exp_s1.5-1.png',
'images/baldwin/bw_exp_s1.5.png',
'images/baldwin/bw_exp_s2-1.png',
'images/baldwin/bw_exp_s2.5.png',
'images/baldwin/bw_exp_s2.5-1.png',
'images/baldwin/bw_exp_s2.png',
'images/baldwin/bw_exp_s3-1.png',
'images/baldwin/bw_exp_s3.4.png',
'images/baldwin/bw_exp_s3.5-1.png',
'images/baldwin/bw_exp_s3.png',
'images/baldwin/bw_exp_s4-1.png',
'images/baldwin/bw_exp_s.png',
'images/baldwin/bw_sim_s1.0.png',
'images/baldwin/bw_sim_s1-1.5.png',
'images/baldwin/bw_sim_s1-2.0.png',
'images/baldwin/bw_sim_s1-2.5.png',
'images/baldwin/bw_sim_s1-3.0.png',
'images/baldwin/bw_sim_s1-3.5.png',
'images/baldwin/bw_sim_s2.0.png',
'images/baldwin/bw_sim_s1.5.png',
'images/baldwin/bw_sim_s2.5.png',
'images/baldwin/bw_sim_s3.4.png',
'images/baldwin/bw_sim_s3.png'],
'images/ml':
['images/ml/ml_exp_10.png',
'images/ml/ml_exp_100.png',
'images/ml/ml_exp_10.png',
'images/ml/ml_exp_110.png',
'images/ml/ml_exp_120.png',
'images/ml/ml_exp_130.png',
'images/ml/ml_exp_140.png',
'images/ml/ml_exp_150.png',
'images/ml/ml_exp_160.png',
'images/ml/ml_exp_170.png',
'images/ml/ml_exp_20.png',
'images/ml/ml_exp_30.png',
'images/ml/ml_exp_40.png',
'images/ml/ml_exp_50.png',
'images/ml/ml_exp_60.png',
'images/ml/ml_exp_70.png',
'images/ml/ml_exp_80.png',
'images/ml/ml_exp_90.png'],
},
python_requires='<= 2.8',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
setup_requires=['numpy>=1.16.6'],
install_requires=['ipython<=5.9.0',
'psychopy>=1.85.2',
'pandas<=0.24.2',
'pygments<=2.5.2',
'wxPython>=4.0.2',
'PyYAML>=5.1.0',
'psutil>=5.6.3',
'msgpack>=1.0.0',
'gevent>=1.3.0',
'pyglet<=1.5.0',
'python-xlib>=0.26']
)