forked from elastic/geneve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "geneve"
description = "Generate data from data models"
readme = "geneve/README.md"
license = {file = "LICENSE.txt"}
authors = [
{name = "Domenico Andreoli", email = "domenico.andreoli@elastic.co"}
]
keywords = ["data", "test", "mock", "generator"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"
]
requires-python = ">=3.8"
dependencies = [
"elasticsearch>=8.2.0",
"eql==0.9.19",
"faker",
"faker-datasets",
"infinite-sets",
"pytoml",
"requests",
"ruamel.yaml"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/elastic/geneve"
"Bug Tracker" = "https://github.com/elastic/geneve/issues"
[tool.setuptools.dynamic]
version = {attr = "geneve.version"}
[tool.black]
line-length = 140
target-version = ["py38"]
exclude = "geneve/kql|tests/kuery|tests/reports"
[tool.isort]
profile = 'black'
skip = ["geneve/kql", "tests/kuery", "tests/reports"]
[tool.ruff]
line-length = 140
exclude = ["geneve/kql", "tests/kuery", "tests/reports"]