forked from ASPP/pelita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (54 loc) · 1.33 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
[metadata]
name = pelita
description = Pelita
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ASPP/pelita
keywords = education
license = BSD-2
license_file = COPYING
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Education
Topic :: Scientific/Engineering :: Artificial Intelligence
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
zip_safe = true
python_requires = >= 3.9
packages = find:
install_requires =
pyzmq
PyYAML
numpy
networkx
pytest>=4
zeroconf
rich
include_package_data = True
setup_requires =
pytest-runner
[options.package_data]
pelita = _layouts/*.layout
[options.entry_points]
console_scripts =
pelita = pelita.scripts.pelita_main:main
pelita-tournament = pelita.scripts.pelita_tournament:main
pelita-tkviewer = pelita.scripts.pelita_tkviewer:main
pelita-player = pelita.scripts.pelita_player:main
pelita-createlayout = pelita.scripts.pelita_createlayout:main
[options.packages.find]
exclude =
test
[aliases]
test=pytest
[tool:pytest]
#addopts = --verbose
python_files = test/*.py
[coverage:run]
relative_files = True
omit =
pelita/scripts/*
pelita/ui/*