-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 792 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 792 Bytes
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
#!/usr/bin/env python
"""Setup file for DataPact."""
from setuptools import setup, find_packages
# Minimal setup.py for legacy tooling; pyproject.toml is authoritative.
setup(
name="datapact",
package_dir={"": "src"},
packages=find_packages(where="src"),
extras_require={
"dev": [
"pytest>=7.0",
"pytest-cov>=4.0",
"testcontainers[kafka]>=3.7.1",
"ruff>=0.1.0",
"black>=23.0",
"mypy>=1.0",
],
"db": [
"psycopg2-binary>=2.9",
"pymysql>=1.1",
],
"streaming": [
"confluent-kafka>=2.3.0",
],
"flink": [
"pyflink>=1.18.0",
],
"spark": [
"pyspark>=3.5.0",
],
},
)