-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
62 lines (57 loc) · 1.48 KB
/
setup.cfg
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
[metadata]
name = spetlr
author = Spetlr.Org
version = file: src/VERSION.txt
description = A python ETL libRary (SPETLR) for Databricks powered by Apache SPark.
long_description = file: README.md
long_description_content_type = text/markdown
author_email = spetlr.org@gmail.com
url = https://github.com/spetlr-org/spetlr
keywords = databricks, pyspark
license_files = LICENSE
project_urls =
Documentation = https://github.com/spetlr-org/spetlr
Bug Reports = https://github.com/spetlr-org/spetlr/issues
Source Code = https://github.com/spetlr-org/spetlr
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
python_requires = >=3.10
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
install_requires =
pyyaml
sqlparse>=0.4.4
Deprecated
pyodbc
importlib-metadata
azure-cosmos
timezonefinder
more_itertools
pycountry
databricks-sdk
numpy
urllib3
msal
pandas
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
python3 = spetlr.alias:python3
spetlr_task = spetlr.entry_points.generalized_task_entry_point:main
[flake8]
exclude = .git,__pycache__,docs,build,dist,venv
max-line-length = 88
extend-ignore = E203
per-file-ignores = __init__.py:F401