- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
28 lines (25 loc) · 596 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 596 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
[tool.poetry]
name = "python-sdformat"
version = "0.4.0"
description = "Python Parser for SDFormat files."
authors = ["FirefoxMetzger <sebastian@wallkoetter.net>"]
license = "BSD-2-Clause"
packages = [
{include = "pysdf"},
]
include = [
"README.md",
"LICENSE",
]
readme = "README.md"
repository = "https://github.com/FirefoxMetzger/python-sdformat"
[tool.poetry.dependencies]
python = "^3.7"
lxml = "^4.8.0"
numpy = "^1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"