summaryrefslogtreecommitdiffstats
path: root/third_party/python/frozenlist/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/frozenlist/setup.cfg')
-rw-r--r--third_party/python/frozenlist/setup.cfg50
1 files changed, 50 insertions, 0 deletions
diff --git a/third_party/python/frozenlist/setup.cfg b/third_party/python/frozenlist/setup.cfg
new file mode 100644
index 0000000000..e96d501be2
--- /dev/null
+++ b/third_party/python/frozenlist/setup.cfg
@@ -0,0 +1,50 @@
+[aliases]
+test = pytest
+
+[metadata]
+license_file = LICENSE.txt
+
+[pep8]
+max-line-length = 79
+
+[easy_install]
+zip_ok = false
+
+[flake8]
+ignore = N801,N802,N803,E226,W504,E252
+max-line-length = 79
+
+[isort]
+multi_line_output = 3
+include_trailing_comma = True
+force_grid_wrap = 0
+use_parentheses = True
+known_third_party = pytest
+known_first_party = frozenlist
+
+[report]
+exclude_lines =
+ @abc.abstractmethod
+ @abstractmethod
+
+[coverage:run]
+branch = True
+source = frozenlist
+omit = site-packages
+
+[mypy]
+follow_imports = silent
+strict_optional = True
+warn_redundant_casts = True
+check_untyped_defs = True
+disallow_any_generics = True
+disallow_untyped_defs = True
+warn_unused_ignores = True
+
+[mypy-pytest]
+ignore_missing_imports = true
+
+[egg_info]
+tag_build =
+tag_date = 0
+