-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
64 lines (61 loc) · 1.52 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
[build-system]
build-backend = "flit_scm:buildapi"
requires = ["flit_core>=3.2", "flit_scm", "wheel"]
[project]
name = "avrotize"
dynamic = ["version"]
authors = [
{ name = "Clemens Vasters", email = "clemensv@microsoft.com"}
]
description = "Tools to convert from and to Avro Schema from various other schema languages."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"jsonschema>=4.23.0",
"lark>=1.1.9",
"pyarrow>=17.0.0",
"asn1tools>=0.167.0",
"jsonpointer>=3.0.0",
"jsonpath-ng>=1.6.1",
"jsoncomparison>=1.1.0",
"requests>=2.32.3",
"azure-kusto-data>=4.5.1",
"azure-identity>=1.17.1",
"datapackage>=1.15.4",
"jinja2>=3.1.4",
"pyiceberg>=0.7.0",
"pandas>=2.2.2",
"docker>=7.1.0",
"requests==2.32.3"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
"fastavro>=1.9.5",
"xmlschema>=3.3.2",
"xmlunittest>=1.0.1",
"pylint>=3.2.6",
"dataclasses_json>=0.6.7",
"dataclasses>=0.8",
"pydantic>=2.8.2",
"avro>=1.12.0",
"testcontainers>=4.7.2",
"pymysql>=1.1.1",
"psycopg2>=2.9.9",
"pyodbc>=5.1.0",
"pymongo>=4.8.0",
"oracledb>=2.3.0",
"cassandra-driver>=3.29.1",
"sqlalchemy>=2.0.32"
]
[project.scripts]
avrotize = "avrotize.avrotize:main"
[tool.setuptools_scm]
write_to = "avrotize/_version.py"
[tool.poetry.dev-dependencies]
pytest-cov = "^5.0.0"