-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 962 Bytes
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
[tool.poetry]
name = "structures"
version = "0.11.0"
description = "Declarative binary building and parsing: simple, fast and extensible"
authors = ["Dmitry Malinovsky (aka malinoff) <damalinov@gmail.com>"]
readme = "README.rst"
license = "apache-2.0"
keywords = [
"structures",
"declarative",
"data structure",
"binary",
"parser",
"builder",
"pack",
"unpack",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.dependencies]
python = ">=3.4"
[tool.poetry.dev-dependencies]
pytest = "^3.7"
pytest-cov = "^2.5"
flake8 = "^3.5"
readme-renderer = "^21.0"