-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 1016 Bytes
/
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
[tool.poetry]
name = "setenvironment"
version = "0.6.1"
description = "Environment configuration helper."
authors = [
"William McLendon <[email protected]>"
]
readme = "README.md"
documentation = "http://localhost:8080/SetEnvironment/doc/index.html"
repository = ""
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: DevOps',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
]
packages = [
{ include = 'setenvironment', from = 'src' }
]
include = [ "CHANGELOG.md" ]
[tool.poetry.dependencies]
python = "^3.6"
configparser = "^5.0.1"
configparserenhanced = {git = "https://github.com/sandialabs/ConfigParserEnhanced", rev = "master"}
[tool.poetry.dev-dependencies]
mock = "^4.0.3"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
Sphinx = "^3.5.1"
sphinx-argparse = "^0.2.5"
sphinx-rtd-theme = "^0.5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"