-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
53 lines (51 loc) · 1.68 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
from setuptools import setup, find_packages
import re
# ------------------
def find_version():
result = re.search(r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format("__version__"), open('neuropsydia/__init__.py').read())
return result.group(1)
# ------------------
setup(
name = "neuropsydia",
description = ("A Python Module for Creating Experiments, Tasks and Questionnaires."),
version = find_version(),
license = "Mozilla Public License Version 2.0",
author = "Dominique Makowski",
author_email = "[email protected]",
maintainer = "Dominique Makowski",
maintainer_email = "[email protected]",
packages = find_packages(),
package_data = {
"neuropsydia.files.font":["*.ttf", "*.otf"],
"neuropsydia.files.binary":["*.png"],
"neuropsydia.files.logo":["*.png"]},
install_requires = [
'pygame',
'numpy',
'pandas',
'Pillow',
'neurokit',
'pyxid',
'python-docx',
'cryptography',
'statsmodels'],
dependency_links=[
"https://github.com/neuropsychology/NeuroKit.py/zipball/master"],
long_description = open('README.rst').read(),
keywords = "python neuropsychology neuropsydia experiment creation",
url = "https://github.com/neuropsychology/Neuropsydia.py/",
download_url = 'https://github.com/neuropsychology/Neuropsydia.py/zipball/dev',
test_suite='nose.collector',
tests_require=['nose'],
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6']
)