-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
63 lines (59 loc) · 1.7 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 = "itoolkit"
version = "2.0.0-dev"
description = "IBM i XMLSERVICE toolkit for Python"
readme = "README.md"
homepage = "https://github.com/IBM/python-itoolkit"
repository = "https://github.com/IBM/python-itoolkit"
documentation = "https://python-itoolkit.readthedocs.io"
license = "MIT"
authors = [
"Kevin Adler <kadler@us.ibm.com>",
"Tony Cairns <adc@us.ibm.com>",
]
packages = [
{ include = "itoolkit", from = "src" },
]
include = [
{ path = "tests/*", format = "sdist" },
{ path = "samples/*", format = "sdist" },
{ path = "docs/*", format = "sdist" },
{ path = "setup.cfg", format = "sdist" },
{ path = "CONTRIBUTING.md", format = "sdist" },
{ path = "contributors.txt", format = "sdist" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System",
]
[tool.poetry.dependencies]
python = ">=3.6.0,<3.12.0"
[tool.poetry.dev-dependencies]
pytest = [
{ version = ">=7.2.1", python = ">=3.11" },
{ version = ">=6.2.5", python = ">=3.10, <3.11" },
{ version = ">=5.0.0", python = "<3.10" },
]
pytest-mock = [
{ version = ">=3.7.0", python = ">=3.7" },
{ version = ">=1.10.0", python = "<3.7" },
]
coverage = [
{ version = ">=6.3.0", python = ">=3.7" },
{ version = ">=4.5.4", python = "<3.7" },
]
coveralls = [
{ version = ">=3.3.0", python = ">=3.5" },
{ version = "<2", python = "<3.5" },
]
pytest-cov = "~2.8"
flake8 = ">=3.6.0"
mock = "^3.0.5"
bumpversion = "^0.5.0"
sphinx = ">=1.8.4"
sphinx-rtd-theme = "^0.4.0"
[build-system]
requires = ["poetry-core>=1.0.0a6"]
build-backend = "poetry.core.masonry.api"