Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 982 B

You have to be logged in to leave a comment. Sign In
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
  1. [build-system]
  2. requires = ["packaging~=23.1", "setuptools~=67.8", "wheel~=0.40"]
  3. build-backend = "setuptools.build_meta"
  4. [tool.flake8]
  5. extend_ignore = ["E", "Y"] # Black
  6. per-file-ignores = [
  7. "__init__.py:F401",
  8. ]
  9. [tool.isort]
  10. profile = "black"
  11. [tool.mypy]
  12. disable_error_code = "type-abstract,typeddict-unknown-key"
  13. disallow_untyped_calls = false
  14. disallow_untyped_decorators = false
  15. ignore_missing_imports = true
  16. python_version = 3.8
  17. show_error_codes = true
  18. show_error_context = true
  19. strict = true
  20. warn_unused_configs = false
  21. warn_unused_ignores = false
  22. [tool.pytest.ini_options]
  23. minversion = "7.1"
  24. testpaths = ["tests"]
  25. filterwarnings = [
  26. "ignore:Deprecated call to `pkg_resources",
  27. "ignore:Please use `line_search_wolfe",
  28. "ignore:Please use `spmatrix",
  29. "ignore:TypedStorage is deprecated",
  30. "ignore:distutils Version classes are deprecated",
  31. "ignore:pkg_resources is deprecated",
  32. "ignore:torch.nn.utils.weight_norm is deprecated in favor of",
  33. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...