-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.17 KB
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
[tool.poetry]
name = "python-troveclient-stubs"
version = "0.1.2"
description = "Type annotations for python-troveclient"
authors = ["Deni Tazurkaev <sha256deni@gmail.com>"]
license = "Apache Software License"
readme = "README.md"
repository = "https://github.com/tdeni/python-troveclient-stubs"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: OpenStack",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Typing :: Stubs Only",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [{ "include" = "troveclient-stubs" }]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.0"
black = "^24.4.2"
isort = "^5.13.2"
python-troveclient = "8.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"