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 508 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
  1. [tool.poetry]
  2. name = "my-ds"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Khuyen Tran"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. dvc = "^2.10.0"
  9. hydra-core = "^1.1.1"
  10. pdoc3 = "^0.10.0"
  11. [tool.poetry.dev-dependencies]
  12. pytest = "^6.2.5"
  13. pre-commit = "^2.17.0"
  14. [build-system]
  15. requires = ["poetry-core>=1.0.0"]
  16. build-backend = "poetry.core.masonry.api"
  17. [tool.black]
  18. line-length = 79
  19. include = '\.pyi?$'
  20. exclude = '''
  21. /(
  22. \.git
  23. | \.hg
  24. | \.mypy_cache
  25. | \.tox
  26. | \.venv
  27. | _build
  28. | buck-out
  29. | build
  30. )/
  31. '''
Tip!

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

Comments

Loading...