-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (49 loc) · 1.51 KB
/
pyproject.toml
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
[tool.poetry]
name = "pygase"
version = "0.3.1"
description = "game-ready client-server architecture and UDP-based network protocol - built to be easy to use, lightweight, fast, scalable and reliable"
authors = ["Silas Bischoff <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/sbischoff-ai/pygase"
homepage = "https://sbischoff-ai.github.io/pygase/"
keywords = ["client", "server", "real-time", "network", "games"]
classifiers = [
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Topic :: Games/Entertainment",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta"
]
packages = [{ include = "pygase" }]
[tool.poetry.dependencies]
python = "^3.6"
curio = "^0.9.0"
ifaddr = "^0.1.6"
u-msgpack-python = "^2.5"
[tool.poetry.dev-dependencies]
pytest = "^4.4"
pylint = "^2.3"
black = {version = "^18.3-alpha.0",allows-prereleases = true}
freezegun = "^0.3.11"
pytest-cov = "^2.6"
mypy = "^0.701.0"
pydoc-markdown = "^2.0"
pylint-fail-under = "^0.1.0"
pre-commit = "^1.15"
pygame = "^1.9"
pydocstyle = "^3.0"
mkdocs-material = "^4.2"
pygments = "^2.4"
[tool.black]
line-length = 119
target_version = ['py36']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"