-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 802 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
[tool.poetry]
name = "catconfig"
version = "0.1.0"
description = "🐱Make more easy for reading/validating/updating config for python app"
authors = ["dev-techmoe <me@lolicookie.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dev-techmoe/python-catconfig"
repository = "https://github.com/dev-techmoe/python-catconfig"
keywords = ["config", "catconfig", "configure", "setting"]
include = [ "LICENSE" ]
classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = "^3.5"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
pytest = "^6.1.1"
autopep8 = "^1.5.4"
toml = "^0.10.1"
pyyaml = "^5.3.1"
cerberus = "^1.3.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"