This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
62 lines (57 loc) · 1.65 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
62
[metadata]
name = atc-dataplatform
author = ATC.Net
version = file: src/VERSION.txt
description = A common set of python libraries for DataBricks
long_description = file: README.md
long_description_content_type = text/markdown
author_email = [email protected]
url = https://github.com/atc-net/atc-dataplatform
keywords = databricks, pyspark
license_files = LICENSE
project_urls =
Documentation = https://github.com/atc-net/atc-dataplatform
Bug Reports = https://github.com/atc-net/atc-dataplatform/issues
Source Code = https://github.com/atc-net/atc-dataplatform
classifiers =
# see https://pypi.org/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.8
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
install_requires =
pyyaml
sqlparse
Deprecated
pyodbc
databricks-api
importlib-metadata
azure-cosmos
timezonefinder==6.0.2
more_itertools
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
python3 = atc.alias:python3
atc-dataplatform-git-hooks = atc.formatting.git_hooks:main
atc-dataplatform-mounts = atc.mount.main:main
[flake8]
exclude = .git,__pycache__,docs,build,dist,venv
# ignore = E203, E266, E501, W503, F403, F401
# ignore = E501
max-line-length = 88
extend-ignore = E203
# max-complexity = 18
# select = B,C,E,F,W,T4,B9