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
  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. [build-system]
  27. requires = ["poetry-core"]
  28. build-backend = "poetry.core.masonry.api"
  29. [tool.black]
  30. line-length = 120
  31. target-version = ['py38', 'py39', 'py310']
  32. include = '\.pyi?$'
  33. exclude = '''
  34. /(
  35. \.git
  36. | \.hg
  37. | \.mypy_cache
  38. | \.tox
  39. | \.venv
  40. | _build
  41. | buck-out
  42. | build
  43. | dist
  44. # The following are specific to Black, you probably don't want those.
  45. | blib2to3
  46. | tests/data
  47. )/
  48. '''
  49. [tool.isort]
  50. profile = "black"
  51. line_length = 120
  52. multi_line_output = 3
  53. include_trailing_comma = true
Tip!

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

Comments

Loading...