-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 2.09 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "profile-config"
version = "1.3.2"
description = "A Python library for managing hierarchical configuration files with profile-based inheritance and variable interpolation"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Profile Config Contributors", email = "martin.j.bartlett@gmail.com"}
]
keywords = ["config", "configuration", "profiles", "yaml", "json", "toml", "inheritance", "interpolation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"omegaconf>=2.3.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
toml = [
"tomli>=2.0.0; python_version < '3.11'",
]
test = [
"pytest>=6.0",
"pytest-cov>=3.0.0",
]
dev = [
"black>=22.0.0",
"isort>=5.0.0",
"flake8>=4.0.0",
"mypy>=0.991",
"build>=0.8.0",
"pre-commit>=3.0.0",
"bandit>=1.7.0",
"types-PyYAML>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/bassmanitram/profile-config"
Documentation = "https://bassmanitram.github.io/profile-config/"
Repository = "https://github.com/bassmanitram/profile-config.git"
"Bug Tracker" = "https://github.com/bassmanitram/profile-config/issues"
[tool.setuptools.packages.find]
include = ["profile_config*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
files = ["profile_config"]
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
no_implicit_optional = false