-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.23 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
[tool.poetry]
name = "kusanagi-sdk-python"
version = "5.0.0"
description = "Python SDK for the KUSANAGI™ framework"
authors = ["Jeronimo Albi <[email protected]>"]
license = "MIT"
homepage = "http://kusanagi.io/"
packages = [
{ include = "kusanagi" },
{ include = "kusanagi/**/*.py" },
]
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
]
include = [
"CHANGELOG.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = ">= 3.9"
pyzmq = "^22.3.0"
msgpack = "^1.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-asyncio = "^0.18.1"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
pytest-mypy = "^0.9.1"
pylint = "^2.12.2"
pylama = "^8.3.7"
coverage = "^6.3.2"
mypy = "^0.931"
isort = "^5.7.0"
flake8 = "^4.0.1"
tox = "^3.24.5"
[tool.poetry.urls]
"Releases" = "https://github.com/kusanagi/kusanagi-sdk-python/releases"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"