-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
73 lines (64 loc) · 2.16 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
[tool.poetry]
name = "cats-python"
version = "4.7.0"
description = "Cifrazia Action Transport System for Python"
authors = ["Bogdan Parfenov <adam.brian.bright@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://adambrianbright.github.io/cats-python/"
repository = "https://github.com/AdamBrianBright/cats-python"
documentation = "https://adambrianbright.github.io/cats-python/"
keywords = ["cifrazia", "tcp", "rpc", "cats", "tornado"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: AsyncIO",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
packages = [
{ include = "cats" }
]
[tool.poetry.urls]
"ChangeLog" = "https://adambrianbright.github.io/cats-python/changelog"
"Bug Tracker" = "https://github.com/AdamBrianBright/cats-python/issues"
"Contact Author" = "https://vk.com/adam_bright"
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
richerr = "^0.3.0"
struct-model-python = "^0.2.0"
pytz = "^2023.3"
tornado = "^6.1"
PyYAML = "^6.0"
toml = "^0.10.2"
msgpack = "^1.0.3"
Django = { version = ">=4.0", optional = true }
djangorestframework = { version = ">=3.13", optional = true }
pydantic = { version = ">=2.4.2", optional = true }
ujson = "^5.1.0"
[tool.poetry.extras]
django = ["Django", "djangorestframework"]
pydantic = ["pydantic"]
[tool.poetry.plugins."pytest11"]
"pytest_cats" = "cats.test_utils.pytest.plugin"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
pydantic = "^2.4.2"
coverage = "^7.2.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"