-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1008 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1008 Bytes
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
[tool.poetry]
name = "SS13-tools"
version = "2.4.1"
description = "Python toolchain for SS13"
authors = ["RigglePrime <27156122+RigglePrime@users.noreply.github.com>", "tattle <66640614+dragomagol@users.noreply.github.com>"]
readme = "README.md"
repository = "https://github.com/RigglePrime/SS13-tools"
keywords = ["ss13", "tgstation"]
[tool.poetry.dependencies]
python = "^3.8.10,<3.13"
requests = "^2.28.1"
colorama = "^0.4.6"
tqdm = "^4.64.1"
python-dateutil = "^2.8.2"
aiohttp = "^3.8.3"
pycryptodome = "^3.17"
ipython = "^8.12.0"
pyperclip = "^1.8.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
pylint = "^3.1.0"
pyinstaller = "^6.5.0"
autopep8 = "^2.0.2"
[tool.poetry.scripts]
ss13tools = "ss13_tools.cli:run"
logbuddy = "ss13_tools.cli:log_buddy"
centcom = "ss13_tools.cli:centcom"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MASTER']
disable = [
"missing-module-docstring"
]
[tool.pylint.'FORMAT']
max-line-length=127