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 859 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  1. [build-system]
  2. requires = ["setuptools", "wheel"]
  3. build-backend = "setuptools.build_meta:__legacy__"
  4. [tool.black]
  5. line-length = 88
  6. include = '\.pyi?$'
  7. exclude = '''
  8. /(
  9. \.git
  10. | \.hg
  11. | \.mypy_cache
  12. | \.tox
  13. | \.venv
  14. | _build
  15. | buck-out
  16. | build
  17. | dist
  18. )/
  19. '''
  20. [tool.isort]
  21. known_first_party = [
  22. "PIL",
  23. "geopandas",
  24. "hydra",
  25. "matplotlib",
  26. "numpy",
  27. "omegaconf",
  28. "pandas",
  29. "pl_bolts",
  30. "pytorch_lightning",
  31. "rioxarray",
  32. "setuptools",
  33. "shapely",
  34. "skimage",
  35. "torch",
  36. "torchvision",
  37. "tqdm",
  38. "typing_extensions",
  39. "xarray",
  40. ]
  41. profile = "black"
  42. line_length = 88
  43. force_sort_within_sections = false
  44. order_by_type = false
  45. multi_line_output = 3
  46. include_trailing_comma = true
  47. [tool.pytest.ini_options]
  48. minversion = "6.0"
  49. addopts = "-ra -q -p no:warnings"
  50. testpaths = [
  51. "tests",
  52. ]
Tip!

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

Comments

Loading...