forked from pocketzworld/python-bot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (40 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (40 loc) · 1.04 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
[tool.poetry]
name = "highrise-bot-sdk"
version = "24.1.0"
description = "The Highrise Bot SDK, for running Highrise bots written in Python."
authors = ["Pocket Worlds Inc <server@high.rs>"]
license = "proprietary"
readme = "README.md"
packages = [{include = "highrise", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = ">= 3.8.4"
click = ">= 8.1.3"
cattrs = "22.2.0"
quattro = "^22.1.0"
pendulum = "^3.0.0b1"
typing-extensions = ">=4.8.0"
setuptools = "^69.0.3"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
mypy = "<1.3.1"
flake8 = "^6.0.0"
types-setuptools = "^67.6.0.7"
[tool.poetry.scripts]
highrise = "highrise.__main__:run"
[tool.isort]
profile = "black"
[tool.mypy]
exclude = "src/highrise/_unions.py"
allow_redefinition = true
check_untyped_defs = true
namespace_packages = true
warn_unreachable = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_incomplete_defs = true
strict_equality = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"