-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 772 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
[tool.poetry]
name = "descript"
version = "0.1.1"
description = "Simple library for `descript.ion` files manipulation."
authors = ["Rinat Sabitov <rinat.sabitov@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/histrio/python-descript-ion"
keywords = ["descript.ion", "filesystem", "metadata"]
classifiers = [
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^2.7 | ^3.9 | ^3.10 | ^3.8 | ^3.7 | ^3.6"
[tool.poetry.dev-dependencies]
pytest = [
{version = "^4.6", python = "~2.7"},
{version = "^7.0", python = ">=3.5"}
]
pytest-cov = "*"
more-itertools = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"