Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 12f9753

Browse files
author
William McLendon
committed
Cleaning up for distribution
1 parent 2b1d6e0 commit 12f9753

File tree

2 files changed

+32
-15
lines changed

2 files changed

+32
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,5 +379,6 @@ Done
379379

380380
[1]: https://cmake.org/cmake/help/latest/command/set.html
381381
[2]: https://github.com/sandialabs/ConfigParserEnhanced
382-
382+
[3]: https://github.com/sandialabs/SetProgramOptions/blob/master/CHANGELOG.md
383+
[4]: https://setprogramoptions.readthedocs.io/en/latest/
383384

pyproject.toml

Lines changed: 30 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,55 @@
11
[tool.poetry]
22
name = "setprogramoptions"
3-
version = "0.5.0"
4-
description = "Program options helper."
3+
description = "Program options configuration file reader using ConfigParserEnhanced."
4+
version = "0.5.0a0"
5+
license = "LICENSE"
6+
readme = "README.md"
7+
keywords = [
8+
"Utility",
9+
"Bash",
10+
"Configuration",
11+
"ConfigParserEnhanced",
12+
"ConfigParser"
13+
]
514
authors = [
615
"William McLendon <[email protected]>"
716
]
8-
readme = "README.md"
9-
documentation = "http://10.202.35.89:8080/SetProgramOptions/doc/index.html"
10-
repository = "https://gitlab-ex.sandia.gov/trilinos-devops-consolidation/code/SetProgramOptions"
17+
maintainers = [
18+
"Sandia National Laboratories <[email protected]>",
19+
]
20+
homepage = "https://github.com/sandialabs/SetProgramOptions"
21+
documentation = "https://setprogramoptions.readthedocs.io/en/latest/"
22+
repository = "https://github.com/sandialabs/SetProgramOptions"
1123
classifiers = [
12-
'Development Status :: 3 - Alpha',
13-
'Intended Audience :: DevOps',
24+
'Development Status :: 5 - Production/Stable',
1425
'Intended Audience :: Developers',
15-
'Programming Language :: Python :: 3',
26+
'Intended Audience :: System Administrators',
27+
'Intended Audience :: Other Audience',
28+
'Programming Language :: Python :: 3.6',
29+
'Programming Language :: Python :: 3.7',
30+
'Programming Language :: Python :: 3.8',
31+
'Programming Language :: Python :: 3.9',
32+
'Programming Language :: Python :: 3.10',
33+
'Programming Language :: Python :: 3.11',
1634
'Programming Language :: Python :: 3 :: Only',
35+
'License :: OSI Approved :: BSD License',
1736
]
1837
packages = [
1938
{ include = 'setprogramoptions', from = 'src' }
2039
]
21-
# include = [ "CHANGELOG.md" ]
40+
include = [ "CHANGELOG.md" ]
2241

2342

2443
[tool.poetry.urls]
25-
CI = "https://gitlab-ex.sandia.gov/trilinos-devops-consolidation/code/SetProgramOptions/-/pipelines"
26-
Issues = "https://gitlab-ex.sandia.gov/trilinos-devops-consolidation/code/SetProgramOptions/-/issues"
44+
CI = "https://github.com/sandialabs/SetProgramOptions/actions"
45+
Issues = "https://github.com/sandialabs/SetProgramOptions/issues"
2746

2847

2948
[tool.poetry.dependencies]
3049
python = "^3.6"
3150
configparser = "^5.0"
3251
configparserenhanced = "^0.8"
3352

34-
# deprecated
35-
# configparserenhanced = {git = "https://gitlab-ex.sandia.gov/trilinos-devops-consolidation/code/ConfigParserEnhanced.git", rev = "master"}
36-
3753

3854
[tool.poetry.dev-dependencies]
3955
mock = "^4.0"

0 commit comments

Comments
 (0)