-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (89 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
94 lines (89 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[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>=22.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>=5.0.5",
"azure-identity>=1.17.1",
"datapackage>=1.15.4",
"jinja2>=3.1.4",
"pyiceberg>=0.10.0",
"pandas>=2.2.2",
"docker>=7.1.0",
"cddlparser>=0.5.0",
"json-structure>=0.1.8"
]
[project.optional-dependencies]
mcp = [
"mcp>=1.26.0"
]
postgres = [
"psycopg2-binary>=2.9.9"
]
mysql = [
"pymysql>=1.1.1"
]
sqlserver = [
"pyodbc>=5.1.0"
]
oracle = [
"oracledb>=2.3.0"
]
all-sql = [
"psycopg2-binary>=2.9.9",
"pymysql>=1.1.1",
"pyodbc>=5.1.0",
"oracledb>=2.3.0"
]
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-binary>=2.9.9",
"pyodbc>=5.1.0",
"pymongo>=4.8.0",
"oracledb>=2.3.0",
"cassandra-driver>=3.29.1",
"sqlalchemy>=2.0.32",
"graphql-core>=3.2.0"
]
[project.scripts]
avrotize = "avrotize.avrotize:main"
avrotize-mcp = "avrotize.mcp_server:main"
[tool.setuptools_scm]
write_to = "avrotize/_version.py"
[tool.pytest.ini_options]
markers = [
"copilot_cli: integration tests requiring the GitHub Copilot CLI (not for CI/CD)",
]
[tool.poetry.dev-dependencies]
pytest-cov = "^7.0.0"