-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
94 lines (84 loc) · 2.53 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
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
[tool.poetry]
name = "CYLGame"
version = "1.6.32"
description = "UMDCYL Game Framework"
authors = ["Jonathan Beaulieu <[email protected]>", "Chandler Swift <[email protected]>", "Peter A. H. Peterson <[email protected]>", "John Pan <[email protected]>", "Al Straumann <[email protected]>", "Brandon Geraci <[email protected]>", "Brandon Paulsen <[email protected]>", "Scott Redig <[email protected]>", "Julian Nowaczek <[email protected]>"]
maintainers = ["Jonathan Beaulieu <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/UMDLARS/CYLGame"
repository = "https://github.com/UMDLARS/CYLGame"
packages = [
{ include = 'CYLGame' },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
]
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^2.0.2"
cachetools = "^4.2.4"
click = "^8.0.3"
future = "^0.18.2"
Flask-Compress = "^1.10.1"
Flask-Classful = "^0.14.2"
flask-request-id-header = "^0.1.1"
Flask-Markdown = "^0.3"
littlepython = "^0.4.11"
ujson = ">=4.2,<6.0"
msgpack = "^1.0.2"
gevent = "^21.8.0"
pycryptodome = "^3.11.0"
pygame = {version = "^2.0.2", optional = true}
Pillow = {version = "^9.2.0", optional = true}
[tool.poetry.dev-dependencies]
Sphinx = "^4.2.0"
sphinxcontrib-versioning = "^2.2.1"
mypy = "^0.910"
isort = {extras = ["colors"], version = "^5.9.3"}
black = "^21.9b0"
pytest = "^7.1"
pytest-cov = "^3.0.0"
types-ujson = "^4.2.0"
types-setuptools = "^57.4.2"
types-cachetools = "^4.2.4"
types-Markdown = "^3.3.6"
pytest-resource-path = "^1.3.0"
[tool.poetry.extras]
playable = ["pygame"]
sprite-editing = ["Pillow"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
python_version = 3.7
pretty = true
show_traceback = true
color_output = true
ignore_missing_imports = true
[tool.black]
# https://github.com/psf/black
target-version = ["py38"]
line-length = 120
color = true
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 38
line_length = 120
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
pythonpath = ["."]
log_level = "DEBUG"