-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.38 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (48 loc) · 1.38 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
"""
setup.py configuration script for data_replication project.
A comprehensive data replication system for Databricks with support for
backup, delta sharing, replication, and reconciliation of DLT tables.
"""
import datetime
from pathlib import Path
from setuptools import find_packages, setup
local_version = datetime.datetime.now(datetime.timezone.utc).strftime("%Y%m%d.%H%M%S")
setup(
name="data_replication",
version="1.0.0" + "+" + "test",
url="https://databricks.com",
description="Data replication system for Databricks tables",
long_description=Path("README.md").read_text(
encoding="utf-8"
),
long_description_content_type="text/markdown",
packages=find_packages(where="./src"),
package_dir={"": "src/"},
entry_points={
"console_scripts": [
"data-replicator=data_replication.cli.main:main",
],
},
install_requires=[
"databricks-connect==17.1.*",
"pydantic>=2.0.0",
"databricks-sdk>=0.67.0",
"setuptools",
"wheel"
],
extras_require={
"dev": [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"coverage>=7.0.0",
],
"test": [
"pytest>=7.0.0",
"coverage>=7.0.0",
],
},
python_requires=">=3.8"
)