-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
96 lines (89 loc) · 2.69 KB
/
setup.py
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
95
96
from setuptools import setup, find_packages
from os import path, getcwd
# from https://packaging.python.org/tutorials/packaging-projects/
# noinspection SpellCheckingInspection
package_name = "sparkpipelineframework"
with open("README.md", "r") as fh:
long_description = fh.read()
try:
with open(path.join(getcwd(), "VERSION")) as version_file:
version = version_file.read().strip()
except IOError:
raise
# classifiers list is here: https://pypi.org/classifiers/
# create the package setup
setup(
name=package_name,
version=version,
author="Imran Qureshi",
author_email="[email protected]",
description="Framework for simpler Spark Pipelines",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/icanbwell/SparkPipelineFramework",
packages=find_packages(
exclude=[
"*/test",
"*/test/*",
"*tests/*",
"*library/*",
"*library",
"docs",
"docs/*",
"docsrc",
"docsrc/*",
"keycloak-config",
"keycloak-config/*",
".gihub",
".github/*",
]
),
install_requires=[
"protobuf>=3",
"pyspark==3.5.1",
"pyarrow>=17.0.0",
"delta-spark==3.2.0",
"sparkautomapper>=3.0.1",
"pymysql>=1.1.1",
"furl>=2.1.3",
"requests>=2.32.3",
"boto3>=1.34.140",
"chardet",
"slack-sdk>=3.22.0",
"smart-open[s3]>=6.3.0",
"sqlalchemy>=1.4.37",
"sqlparse>=0.5.3",
"bounded-pool-executor>=0.0.3",
"fastjsonschema>=2.18.0",
"helix.fhir.client.sdk>=4.1.0",
"opensearch-py[async]>=2.6.0",
"pyathena>2.14.0",
"spark-nlp>=4.2.3",
"pymongo>=4.10.1",
"pandas>=2",
"structlog>=23.1.0",
"usaddress>=0.5.10",
"usaddress-scourgify>=0.6.0",
"aiohttp>=3.10.11",
"pydantic>=2.8.2",
"motor[snappy,zstd]>=3.5.1",
"dataclasses-json>=0.6.7",
"helixtelemetry>=1.0.3",
"opentelemetry-api>=1.30.0",
"opentelemetry-sdk>=1.30.0",
"opentelemetry-exporter-otlp>=1.30.0",
"opentelemetry-instrumentation-aiohttp-client>=0.51b0",
"msgpack>=1.1.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
dependency_links=[],
include_package_data=True,
zip_safe=False,
package_data={"spark_pipeline_framework": ["py.typed"]},
)