forked from amaslyaev/cbor-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 972 Bytes
/
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
[tool.poetry]
name = "cbor-json"
#module = "cbor_json"
#dist-name = "cbor-json"
version = "0.0.5"
description = "Three-way conversion between 'native' Python data representation, CBOR, and JSON"
authors = ["Alexander Maslyeav <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/amaslyaev/cbor-json/"
repository = "https://github.com/amaslyaev/cbor-json/"
documentation = "https://github.com/amaslyaev/cbor-json/"
keywords = []
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3"
]
[tool.poetry.dependencies]
python = "^3.7"
cbor2 = "^5.5.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
flake8 = "^3.9.2"
pandas = "*"
pylint = "^2.9.5"
coverage-badge = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"