-
Notifications
You must be signed in to change notification settings - Fork 179
/
pyproject.toml
53 lines (48 loc) · 1.67 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
[build-system]
requires = [ "poetry>=1.0.5",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "splunk_eventgen"
version = "7.2.1"
description = "Splunk Event Generator to produce real-time, representative data"
authors = [ "Brian Bingham <[email protected]>", "Tony Lee <[email protected]>", "Jack Meixensperger <[email protected]>",]
license = "Apache-2.0"
readme = "README.md"
documentation = "http://splunk.github.io/eventgen/"
repository = "https://github.com/splunk/eventgen"
keywords = [ "splunk", "eventgen", "container", "containers", "docker", "automation",]
classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Testing", "Programming Language :: Python", "Programming Language :: Python :: 3.7",]
[[tool.poetry.packages]]
include = "splunk_eventgen"
[tool.black]
target-version = [ "py37",]
include = "\\.pyi?$"
exclude = "/(\n \\.git\n | \\.tox\n | \\.venv\n | build\n | dist\n)/\n"
[tool.poetry.scripts]
splunk_eventgen = "splunk_eventgen.__main__:main"
[tool.poetry.dependencies]
python = "^3.7"
docker = "^3.7.3"
pyOpenSSL = "^19.1.0"
lxml = "^4.3.5"
boto3 = "^1.12.45"
requests = "^2.18.4"
requests-futures = "1.0.0"
redis = "3.3.10"
Flask = "^1.0.3"
ujson = "^2.0.3"
PyYAML = "^5.3.1"
jinja2 = "2.10.3"
urllib3 = "1.24.2"
httplib2 = "^0.17.2"
importlib-metadata = "^1.0.0"
[tool.poetry.dev-dependencies]
pytest = "4.6.4"
pytest-xdist = "^1.31.0"
mock = "^4.0.2"
pytest-cov = "^2.8.1"
coverage = "4.5.4"
pytest-mock = "^3.1.0"
flake8 = "^3.8.3"
black = "20.8b1"
isort = "^5.4.2"