-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (45 loc) · 1.33 KB
/
setup.cfg
File metadata and controls
51 lines (45 loc) · 1.33 KB
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
[metadata]
name = battle
version = 0.2.1
license = MIT
author = Sasha Case
description = A robot programming game which allows programming a virtual spaceship robot driver with simple commands to fight a battle against other players.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/atcase/battle
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Education
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Education
Topic :: Games/Entertainment
Topic :: Games/Entertainment :: Simulation
Typing :: Typed
[options]
packages = battle
install_requires =
websocket-client>=1.3.1
aiohttp>=3.8.1
aiohttp-jinja2>=1.5
Jinja2>=3.0.3
[options.entry_points]
console_scripts =
battle-runner = battle.runner:main
battle-pongbot = battle.pongbot:main
battle-radarbot = battle.radarbot:main
battle-chillbot = battle.chillbot:main
[options.package_data]
battle =
static/*
static/**/*
templates/*
[mypy]
python_version = 3.7
[mypy-websocket]
ignore_missing_imports = True