-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
90 lines (86 loc) · 1.93 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[metadata]
name = articat
author = Related Sciences LLC
author_email = [email protected]
license = Apache
description = articat: data artifact catalog
long_description_content_type=text/markdown
long_description = file: README.md
url = https://github.com/related-sciences/articat
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
keywords =
data
catalog
metadata
data-discovery
data-catalog
[options]
packages = articat
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
scripts =
bin/articat
python_requires = >=3.11
install_requires =
fire >= 0.4.0
fsspec >= 2021.7.0
gcsfs >= 2021.7.0
google-cloud-bigquery >= 1.11
google-cloud-datastore >= 2.1
papermill >= 2.3
pydantic ~= 1.8
[flake8]
ignore =
E203
E402
E501
E731
W503
E231
W291
F821
F811
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[mypy]
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-_pytest.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-fsspec.*]
ignore_missing_imports = True
[mypy-gcsfs.*]
ignore_missing_imports = True
[mypy-pyspark.*]
ignore_missing_imports = True
[mypy-google.cloud.*]
ignore_missing_imports = True
[mypy-papermill.*]
ignore_missing_imports = True
[mypy-nbformat.*]
ignore_missing_imports = True
[mypy-nbconvert.*]
ignore_missing_imports = True
[mypy-dateutil.*]
ignore_missing_imports = True
[mypy-fire.*]
ignore_missing_imports = True
[mypy-traitlets.*]
ignore_missing_imports = True
[mypy-*.tests.*,conftest]
disallow_incomplete_defs = False
disallow_untyped_defs = False
disallow_untyped_decorators = False