summaryrefslogtreecommitdiffstats
path: root/third_party/python/attrs/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/attrs/setup.cfg')
-rw-r--r--third_party/python/attrs/setup.cfg31
1 files changed, 31 insertions, 0 deletions
diff --git a/third_party/python/attrs/setup.cfg b/third_party/python/attrs/setup.cfg
new file mode 100644
index 0000000000..0dfa1a84cc
--- /dev/null
+++ b/third_party/python/attrs/setup.cfg
@@ -0,0 +1,31 @@
+[bdist_wheel]
+universal = 1
+
+[metadata]
+license_file = LICENSE
+
+[tool:pytest]
+minversion = 3.0
+strict = true
+addopts = -ra
+testpaths = tests
+filterwarnings =
+ once::Warning
+ ignore:::pympler[.*]
+
+[isort]
+atomic = true
+force_grid_wrap = 0
+include_trailing_comma = true
+lines_after_imports = 2
+lines_between_types = 1
+multi_line_output = 3
+not_skip = __init__.py
+use_parentheses = true
+known_first_party = attr
+known_third_party = hypothesis,pytest,setuptools,six,zope
+
+[egg_info]
+tag_build =
+tag_date = 0
+