-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.7 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.7 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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='schema_validata', # name of the package
version='0.0.5', # release version
author='ahamptonTIA', # org/author
description=\
'''
databricks_helper
The schema_validata package is a collection of functions
to check datasets for data complinace based on a given an xlsx
data dictionary (see template).
''',
long_description=long_description, # long description read from the the readme file
long_description_content_type='text/markdown',
classifiers=[ # information to filter the project on PyPi website
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.7', # minimum version requirement of the package
py_modules=['schema_validata'], # name of the python package
package_dir={'':'src'}, # directory of the source code of the package
packages=setuptools.find_packages(where="src"), # list of all python modules to be installed
install_requires=[
# 'pyspark>=3.4.1',
# 'pandas>=1.4.4',
# 'numpy>=1.21',
'openpyxl',
# 'sqlparse',
'sqlglot',
'sql_metadata',
'sqllineage'
]
)