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 1.1 KB

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
56
57
58
59
60
61
  1. [tool.poetry]
  2. name = "chatbot-interview-prep"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Your Name <you@example.com>"]
  6. readme = "README.md"
  7. packages = [
  8. { include = "lib", from = "." },
  9. ]
  10. [tool.poetry.dependencies]
  11. python = "^3.10"
  12. dvc = {extras = ["s3"], version = "^3.30.1"}
  13. numpy = "^1.26.2"
  14. pandas = "^2.1.3"
  15. streamlit = "^1.28.2"
  16. cohere = "^4.35"
  17. pydantic = "^2.5.1"
  18. python-dotenv = "^1.0.0"
  19. openai = "^1.3.5"
  20. google-generativeai = "^0.2.2"
  21. [tool.poetry.group.dev.dependencies]
  22. ipykernel = "^6.26.0"
  23. black = {extras = ["jupyter"], version = "^23.11.0"}
  24. flake8 = "^6.1.0"
  25. pre-commit = "^3.5.0"
  26. commitizen = "^3.12.0"
  27. [build-system]
  28. requires = ["poetry-core"]
  29. build-backend = "poetry.core.masonry.api"
  30. [tool.black]
  31. line-length = 100
  32. target-version = ['py38', 'py39', 'py310']
  33. include = '\.pyi?$'
  34. exclude = '''
  35. /(
  36. \.git
  37. | \.hg
  38. | \.mypy_cache
  39. | \.tox
  40. | \.venv
  41. | _build
  42. | buck-out
  43. | build
  44. | dist
  45. # The following are specific to Black, you probably don't want those.
  46. | blib2to3
  47. | tests/data
  48. )/
  49. '''
  50. [tool.isort]
  51. profile = "black"
  52. line_length = 100
  53. multi_line_output = 3
  54. include_trailing_comma = true
Tip!

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

Comments

Loading...