-
Notifications
You must be signed in to change notification settings - Fork 140
/
setup.cfg
81 lines (75 loc) · 1.69 KB
/
setup.cfg
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
[metadata]
name = PsiTurk
version = attr: psiturk.version.version_number
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
author = NYU Computation and Cognition Lab
author_email = authors@psiturk.org
description = An open platform for science on Amazon Mechanical Turk
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/NYUCCL/psiturk
[options]
install_requires =
Flask_RESTful~=0.3.7
boto3~=1.9.179
fuzzywuzzy~=0.17.0
cmd2~=0.9.14
psutil~=5.6.3
Flask_Login~=0.4.1
gunicorn[gevent]~=20.0.4
Flask~=1.1.4
itsdangerous~=1.1.0
markupsafe~=2.0.1
certifi~=2019.11.28
pytz~=2019.1
user_agents~=2.0
docopt~=0.6.2
urllib3~=1.25.3
Faker~=1.0.7
requests~=2.22.0
APScheduler~=3.6.1
botocore~=1.12.179
SQLAlchemy~=1.3.5
pytest~=6.1.1
future~=0.17.1
GitPython~=3.1.0
python-dotenv~=0.12.0
python_dateutil~=2.8.1
pyOpenSSL~=22.0.0
setproctitle~=1.1.10
packages=
psiturk
psiturk.api
psiturk.dashboard
include_package_data = True
zip_safe = False
setup_requires =
pytest-runner
[options.extras_require]
dev =
sphinx
sphinx_rtd_theme
sphinx-server
testing =
pytest
ciso8601~=2.1.3
pytest-mock
pytest-socket
pytz
[options.entry_points]
console_scripts =
psiturk-shell = psiturk.psiturk_shell:run
psiturk = psiturk.command_line:process
psiturk-server = psiturk.command_line:process
psiturk-setup-example = psiturk.command_line:process
psiturk-heroku-config = psiturk.command_line:process
[aliases]
test=pytest
[testenv]
deps = .[test]
[tool:pytest]
addopts = --disable-socket