-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
83 lines (76 loc) · 2.03 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
82
83
[metadata]
name = tomsup
description = An implementation of game theory of mind in a agent based framework following the implementation of Devaine, et al. (2017).
author = Kenneth C. Enevoldsen and Peter T. Waade
author_email = [email protected]
url="https://github.com/KennethEnevoldsen/tomsup",
license = Apache License 2.0
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
tom
theory-of-mind
game-theory
[options]
packages = find:
include_package_data = true
python_requires = >=3.6
install_requires =
numpy>=1.2.4
pandas>=1.2.3,< 1.3.0
scipy>=1.6.3
matplotlib>=3.4.2
seaborn>=0.11.1
joblib>=1.2.0
wasabi>=0.8.2
setup_requires =
setuptools
[bdist_wheel]
universal = true
[sdist]
formats = gztar
[flake8]
ignore = E203, E266, E501, E731, W503
max-line-length = 80
select = B,C,E,F,W,T4,B9
exclude =
.env,
.git,
__pycache__,
[mypy]
ignore_missing_imports = True
no_implicit_optional = True
[coverage:run]
[coverage:report]
omit =
**/tests/*
**/tests/*
**/about.py
exclude_lines =
pragma: no cover
# Don't complain about missing debug-only code:
def __unicode__
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
show_missing = True