pyproject.toml 701 字节
Newer Older
1
[tool.poetry]
2 3
name = "taospy"
version = "2.1.2"
4 5 6 7
description = "TDengine connector for python"
authors = ["Taosdata Inc. <support@taosdata.com>"]
license = "AGPL-3.0"
readme = "README.md"
8 9 10
packages = [
  {include = "taos"}
]
11 12 13 14 15 16 17

[tool.poetry.dependencies]
python = "^2.7 || ^3.4"
typing = "*"

[tool.poetry.dev-dependencies]
pytest = [
18 19
  { version = "^4.6", python = ">=2.7,<3.0" },
  { version = "^6.2", python = ">=3.7,<4.0" }
20 21 22
]
pdoc = { version = "^7.1.1", python = "^3.7" }
mypy = { version = "^0.910", python = "^3.6" }
23
black = [{ version = "^21.*", python = ">=3.6.2,<4.0" }]
24 25 26 27 28 29 30

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.black]
line-length = 119