-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
72 lines (62 loc) · 1.76 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
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=70", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ccx-messaging"
dynamic = ["version"]
readme = "README.md"
authors = [
{name="CCX Processing Team", email="ccx-core-processing-team@redhat.com"}
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
requires-python = ">= 3.8"
dependencies = [
"app-common-python>=0.2.3",
"boto3>=1.34.1,<1.36.4", # limited due to incompatibility between s3fs and newer versions of boto
"confluent-kafka>=2.0.0",
"insights-core>=3.1.2",
"insights-core-messaging>=1.2.15",
"jsonschema>=4.0.0",
"prometheus-client>=0.16.0",
"python-json-logger>=2.0.7,<4",
"PyYAML>=6.0",
"requests>=2.31.0",
"sentry-sdk>=1.37.1",
"watchtower>=3.0.0"
]
[tool.setuptools.packages.find]
include = ["ccx_messaging"]
[project.license]
text = "Apache-2.0"
[project.urls]
Homepage = "https://github.com/RedHatInsights/insights-ccx-messaging"
[project.scripts]
ccx-messaging = "ccx_messaging.command_line:ccx_messaging"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"freezegun"
]
dev = [
"coverage",
"pycco",
"ruff"
]
[tool.setuptools_scm]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "UP", "C", "D"]
ignore = ["D211", "C401", "D203", "D213", "UP006", "UP007", "UP009", "UP015", "UP035"]