forked from kusanagi/kusanagi-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.19 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
[tool.poetry]
name = "kusanagi-sdk-python"
version = "3.0.1"
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.8',
'Programming Language :: Python :: 3.9',
'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.8 || ^3.9"
pyzmq = "19.0.0"
msgpack = "1.0.0"
[tool.poetry.dev-dependencies]
pytest = "5.4.3"
pytest-asyncio = "^0.14.0"
pytest-mock = "^3.5.1"
pytest-mypy = "^0.8.0"
pylint = "^2.7.1"
pylama = "^7.7.1"
coverage = "^5.4"
mypy = "^0.812"
isort = "^5.7.0"
flake8 = "^3.8.4"
[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"