forked from sam81/pychoacoustics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (56 loc) · 2.79 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
#! /usr/bin/env python
from distutils.core import setup
import glob
setup(
name="pychoacoustics",
version="0.5.14",
url="http://samcarcagno.altervista.org/pychoacoustics/pychoacoustics.html",
author="Samuele Carcagno",
author_email="[email protected];",
description="Python application for running psychoacoustics experiments",
long_description=\
"""
pychoacoustics is an application and platform for designing
and running auditory psychophysics experiments. It provides an easy
to use graphical user interface with a set of builtin experiments,
and a set of facilities for data collection. pychoacoustics also
provides facilities to create your own custom experiments, although
some Python programming knowledge is necessary.
""",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
license="GPL v3",
requires=['PyQt (>=5.3.2)', 'numpy (>=1.6.1)', 'scipy (>=0.10.1)'],
packages=["pychoacoustics", "pychoacoustics.default_experiments", "pychoacoustics.nnresample"],
scripts = ["pychoacoustics.pyw"],
package_dir={"pychoacoustics": "pychoacoustics"},
package_data={'pychoacoustics': ["qrc_resources.py",
"doc/_build/latex/*.pdf",
"doc/_build/html/*.*",
"doc/_build/html/_images/*",
"doc/_build/html/_modules/*",
"doc/_build/html/_sources/*.*",
"doc/_build/html/_sources/_templates/autosummary/*.*",
"doc/_build/html/_sources/_themes/*.*",
"doc/_build/html/_static/*.*",
"doc/_build/html/_static/css/*.*",
"doc/_build/html/_static/font/*.*",
"doc/_build/html/_static/js/*.*",
"doc/_build/html/_templates/autosummary/*.*",
"doc/_build/html/_themes/*.*",
"sounds/*.*"],},
data_files = [('share/applications', ['pychoacoustics.desktop']),
('share/icons', ['icons/Machovka_Headphones.svg']),
]
)