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 0
/
setup.cfg
67 lines (58 loc) · 1.78 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
63
64
65
66
67
[metadata]
name = spetlr-tools
author = ATC.Net
version = file: src/VERSION.txt
author_email = atcnet.org@gmail.com
description = A common set of python libraries for DataBricks, supplement to atc-dataplatform
long_description = file: README.md
long_description_content_type = text/markdown
keywords = databricks, pyspark, atc-dataplatform, spetlr
url = https://github.com/atc-net/atc-dataplatform-tools
license_files = LICENSE
project_urls =
Documentation = https://github.com/atc-net/atc-dataplatform-tools
Bug Reports = https://github.com/atc-net/atc-dataplatform-tools/issues
Source Code = https://github.com/atc-net/atc-dataplatform-tools
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]
zip_safe = False
include_package_data = True
package_dir=
=src
packages = find:
python_requires = >=3.8
install_requires =
atc-dataplatform
pyyaml==6.0
importlib_metadata
requests
dateparser
pytest
[options.packages.find]
where=src
[options.extras_require]
dev =
check-manifest
[options.package_data]
* = *.json, *.sql, *.yaml
[options.entry_points]
console_scripts =
spetlr-freeze-req = spetlrtools.requirements:main
spetlr-az-databricks-token = spetlrtools.az_databricks_token.main:main
spetlr-test-job = spetlrtools.test_job.main:main
[flake8]
exclude = .git,__pycache__,docs,build,dist,venv
# ignore = E203, E266, E501, W503, F403, F401
ignore = E501, W503
max-line-length = 88
extend-ignore = E203
# max-complexity = 18
# select = B,C,E,F,W,T4,B9