-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.08 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
[tool.black]
line-length = 130
exclude = '''
^/(
(main\/cloudfoundry_client\/dropsonde.*)
)/
'''
[tool.poetry]
name = "cloudfoundry_client"
version = "1.38.2"
description = "A client library for CloudFoundry"
authors = ["Benjamin Einaudi <[email protected]>"]
readme = "README.rst"
homepage = "https://pypi.org/project/cloudfoundry-client/"
documentation = "https://pypi.org/project/cloudfoundry-client/"
repository = "https://github.com/cloudfoundry-community/cf-python-client"
keywords = ["cloudfoundry", "cf"]
[tool.poetry.dependencies]
python = ">=3.9"
aiohttp = ">=3.8.0"
protobuf = ">= 3.20.0, < 6.0.0"
oauth2-client= "1.4.2"
websocket-client= "~1.8.0"
PyYAML = ">=6.0"
requests = ">=2.5.0"
polling2= "0.5.0"
[tool.poetry.group.dev.dependencies]
black= "24.10.0"
flake8= "7.1.1"
pytest = "~8.2.2"
twine = "~6.0.0"
[tool.poetry.scripts]
cloudfoundry-client = "cloudfoundry_client.main.main:main"
[tool.pytest.ini_options]
console_output_style = "count"
pythonpath = [".", "tests",]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"