-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 910 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
36
37
[tool.poetry]
name = "paraml"
version = "0.1.1"
description = "a parameter definition language and parser - all in yaml"
authors = [
"mcmcgrath13",
"s-bessey"
]
license = "GPLv3"
readme = "README.md"
homepage = "https://github.com/marshall-lab/paraml"
repository = "https://github.com/marshall-lab/paraml"
keywords = ["yaml", "params", "parameters", "config", "validation"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
oyaml = "^1.0"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
mypy = "^0.790"
flake8 = "^3.8.4"
black = "^20.8b1"
pytest-cov = "^2.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"