-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
67 lines (59 loc) · 2.34 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
#!/usr/bin/env python
from distutils.core import setup
import sys
import pylocator
# For some commands, use setuptools
if len(set(('develop', 'sdist', 'release', 'bdist_egg', 'bdist_rpm',
'bdist', 'bdist_dumb', 'bdist_wininst', 'install_egg_info',
'build_sphinx', 'egg_info', 'easy_install',
)).intersection(sys.argv)) > 0:
from setupegg import extra_setuptools_args
# extra_setuptools_args is injected by the setupegg.py script, for
# running the setup with setuptools.
if not 'extra_setuptools_args' in globals():
extra_setuptools_args = dict()
setup(name='pylocator',
version=pylocator.__version__,
summary='Program for the localization of EEG-electrodes.',
author='Thorsten Kranz',
author_email='[email protected]',
url='http://pylocator.thorstenkranz.de',
description="""
Program for the localization of EEG-electrodes.
""",
long_description=file('README').read(),
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
],
platforms='any',
package_data={'pylocator': [
'resources/mainWindow.glade',
'resources/pylocator.ico',
'resources/markers.png',
'resources/surfaces.png',
'resources/rois.png',
'resources/screenshots.png',
'resources/editLabel.glade',
'resources/editCoordinates.glade',
'resources/editSettings.glade',
'resources/about.glade',
'resources/camera24.png',
'resources/camera48.png',
],},
packages=[
'pylocator',
'pylocator.misc',
'pylocator.tests',
],
scripts=['bin/pylocator'],
**extra_setuptools_args)