generated from databricks-industry-solutions/industry-solutions-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 939 Bytes
/
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
from setuptools import setup
from io import open
from os import path
import sys
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="databricksx12",
version="0.0.2",
# python_requires='>=3.9.*',
python_requires='>=3.9',
author="Aaron Zavora, Raven Mukherjee",
author_email="[email protected]",
description= "Parser for handling x12 EDI transactions in Spark",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/databricks-industry-solutions/x12-edi-parser",
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
packages=['databricksx12', 'databricksx12.hls'],
py_modules=['databricksx12']
)