This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
65 lines (53 loc) · 1.66 KB
/
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
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
[tool.poetry]
name = "configparserenhanced"
description = "A tool that extends configparser to enable enhanced processing of .ini files."
version = "0.8.1.5"
license = "LICENSE"
readme = "README.md"
keywords = [
"Utility",
"Bash",
"Configuration",
"ConfigParserEnhanced",
"ConfigParser"
]
repository = "https://github.com/sandialabs/ConfigParserEnhanced"
documentation = "https://configparserenhanced.readthedocs.io/en/latest/"
authors = [
"William McLendon <[email protected]>",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Other Audience',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: BSD License',
]
packages = [
{ include = 'configparserenhanced', from = 'src' },
]
include = [ "CHANGELOG.md" ]
[tool.poetry.urls]
CI = "https://github.com/sandialabs/ConfigParserEnhanced/actions/workflows/test-driver-core.yml"
Issues = "https://github.com/sandialabs/ConfigParserEnhanced/issues"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
mock = "^4.0"
pytest = "^6.2"
pytest-cov = "^2.11"
Sphinx = "^3.5"
sphinx-argparse = "^0.2"
sphinx-rtd-theme = "^0.5"
[tool.pycodestyle]
statistics = true
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"