forked from py-mine/PyMine-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.07 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
[tool.black]
line-length = 127
target-version = ['py37', 'py38']
include = '\.pyi?$'
[tool.pytest.ini_options]
addopts = "--full-trace -v"
testpaths = ["tests"]
[tool.poetry]
name = "PyMine"
version = "0.1.0"
description = "The fast and easy to use, moddable, Python based Minecraft server!"
authors = ["PyMine Developers & Contributors"]
license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.7.9"
aiofile = "3.4.0"
aiohttp = "3.7.4"
async-timeout = "3.0.1"
asyncio-dgram = "1.2.0"
attrs = "20.3.0"
caio = "0.7.0"
cffi = "1.14.5"
chardet = "3.0.4"
colorama = "0.4.4"
cryptography = "3.4.6"
gitdb = "4.0.5"
GitPython = "3.1.13"
idna = "3.1"
immutables = "0.15"
multidict = "5.1.0"
mutf8 = "1.0.3"
numpy = "1.20.1"
pycparser = "2.20"
PyYAML = "5.4.1"
smmap = "3.0.5"
typing-extensions = "3.7.4.3"
yarl = "1.6.3"
uvloop = {version = "^0.15.2", optional = true}
prompt-toolkit = "^3.0.16"
classy-json = "^3.0.3"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
pytest = "^6.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"