-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.cfg
124 lines (96 loc) · 2.44 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
##########################
# Setup.py Configuration #
##########################
[metadata]
name = schnapsen
version = 0.0.4
description = A platform for coding and running card playing bots
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/intelligent-systems-course/
maintainer = Michael Cochez
maintainer_email = [email protected]
project_urls =
Bug Tracker = https://github.com/intelligent-systems-course/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Development Status :: 1 - Planning
Intended Audience :: Education
Topic :: Games/Entertainment
[options]
install_requires =
class_resolver>=0.0.10 # for resolving classes; >=0.0.10 for as_string for click options
click==8.1.3 # for CLI
scikit-learn==1.3.2 # for ml bot
joblib==1.3.2 # for storing the model of the ml bot
flask==2.3.3 # for GUI
Werkzeug==3.0.1 # Werkzeug is needed for flask. Fixing the version because higher versions cause an error
# Where is my code
packages = find:
package_dir =
= src
python_requires = >=3.10
[options.packages.find]
where = src
[options.extras_require]
test =
flake8
mypy
pytest
unittest-templates
dev =
ipykernel
doc =
pdoc
[options.entry_points]
console_scripts =
schnapsen = schnapsen.cli:main
#########################
# Flake8 Configuration #
# (.flake8) #
#########################
[flake8]
ignore =
# line too long
E501
import-order-style = pycharm
application-import-names =
schnapsen
exclude =
########################
# mypy Configuration #
# (mypy.ini) #
########################
[mypy]
[mypy-schnapsen.deck]
warn_return_any = False
[mypy-class_resolver]
ignore_missing_imports = True
[mypy-dill]
ignore_missing_imports = True
[mypy-matplotlib]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True
[mypy-joblib]
ignore_missing_imports = True
[mypy-seaborn.*]
ignore_missing_imports = True
[mypy-tqdm.*]
ignore_missing_imports = True
[mypy-unittest_templates]
ignore_missing_imports = True
########################
# Pytest Configuration #
# (pytest.ini) #
########################
[tool:pytest]
addopts = --strict-markers
markers =
# name: description