forked from sandialabs/SetProgramOptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (59 loc) · 1.8 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
64
65
66
67
68
69
[tool.poetry]
name = "setprogramoptions"
description = "Program options configuration file reader using ConfigParserEnhanced."
version = "0.5.0.2"
license = "LICENSE"
readme = "README.md"
keywords = [
"Utility",
"Bash",
"Configuration",
"ConfigParserEnhanced",
"ConfigParser"
]
authors = [
"William McLendon <wcmclen@sandia.gov>"
]
maintainers = [
"Sandia National Laboratories <wg-SetProgramOptions@sandia.gov>",
]
homepage = "https://github.com/sandialabs/SetProgramOptions"
documentation = "https://setprogramoptions.readthedocs.io/en/latest/"
repository = "https://github.com/sandialabs/SetProgramOptions"
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 = 'setprogramoptions', from = 'src' }
]
include = [ "CHANGELOG.md" ]
[tool.poetry.urls]
CI = "https://github.com/sandialabs/SetProgramOptions/actions"
Issues = "https://github.com/sandialabs/SetProgramOptions/issues"
[tool.poetry.dependencies]
python = "^3.6"
configparser = "^5.0"
configparserenhanced = "^0.8"
[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"