-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
44 lines (39 loc) · 1.22 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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
keywords = chess, terminal, fairy-stockfish, stockfish, lichess, lichess.org, cli, san, uci
license_files = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Environment :: Console
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Games/Entertainment :: Board Games
Topic :: Games/Entertainment :: Turn Based Strategy
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
Natural Language :: English
[options]
packages = find:
package_dir = = src
python_requires = >= 3.8
include_package_data = True
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
cli-chess = cli_chess.__main__:main
[flake8]
max-line-length = 150
per-file-ignores =
*/__init__.py: F401
[tool:pytest]
filterwarnings = error
addopts = --disable-socket