-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.49 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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "spark_log_parser"
authors = [{"name" = "Sync Computing"}]
readme = "README.md"
requires-python = ">=3.10.3"
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"boto3==1.26.41",
"numpy>=1.23.4,<1.25",
"pandas==1.5.2",
"orjson==3.8.5",
"ujson==5.7.0",
"stream-unzip==0.0.78",
"pydantic==2.1.1",
"requests==2.28.1",
"aiodataloader==0.3.0"
]
dynamic = ["version", "description"]
[project.optional-dependencies]
dev = [
"pytest==7.2.0",
"pytest-asyncio==0.20.3",
"pytest-mock==3.10.0",
"requests-mock==1.10.0",
"deepdiff==6.2.3",
"black==22.12.0",
"isort==5.11.4",
"flake8==6.0.0",
]
[project.scripts]
spark-log-parser = "spark_log_parser.cli:main"
[project.urls]
Home = "https://github.com/synccomputingcode/spark_log_parser"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
pythonpath = [
"."
]
filterwarnings = [
"ignore::UserWarning"
]