|
1 | 1 | [tool.poetry]
|
2 | 2 | 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 | +] |
5 | 14 | authors = [
|
6 | 15 | "William McLendon <[email protected]>"
|
7 | 16 | ]
|
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" |
11 | 23 | classifiers = [
|
12 |
| - 'Development Status :: 3 - Alpha', |
13 |
| - 'Intended Audience :: DevOps', |
| 24 | + 'Development Status :: 5 - Production/Stable', |
14 | 25 | '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', |
16 | 34 | 'Programming Language :: Python :: 3 :: Only',
|
| 35 | + 'License :: OSI Approved :: BSD License', |
17 | 36 | ]
|
18 | 37 | packages = [
|
19 | 38 | { include = 'setprogramoptions', from = 'src' }
|
20 | 39 | ]
|
21 |
| -# include = [ "CHANGELOG.md" ] |
| 40 | +include = [ "CHANGELOG.md" ] |
22 | 41 |
|
23 | 42 |
|
24 | 43 | [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" |
27 | 46 |
|
28 | 47 |
|
29 | 48 | [tool.poetry.dependencies]
|
30 | 49 | python = "^3.6"
|
31 | 50 | configparser = "^5.0"
|
32 | 51 | configparserenhanced = "^0.8"
|
33 | 52 |
|
34 |
| -# deprecated |
35 |
| -# configparserenhanced = {git = "https://gitlab-ex.sandia.gov/trilinos-devops-consolidation/code/ConfigParserEnhanced.git", rev = "master"} |
36 |
| - |
37 | 53 |
|
38 | 54 | [tool.poetry.dev-dependencies]
|
39 | 55 | mock = "^4.0"
|
|
0 commit comments