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 762 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
  1. [tool.poetry]
  2. name = "customer_segmentation"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Khuyen <khuyentran1476@gmail.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. numpy = ">=1.14.3,<1.21.0"
  9. matplotlib = "^3.5.1"
  10. seaborn = "^0.11.2"
  11. scikit-learn = "^1.0.2"
  12. hydra-core = "^1.1.1"
  13. dvc = "^2.9.3"
  14. yellowbrick = "^1.3.post1"
  15. pandas = "<1.3.5"
  16. dagshub = "^0.1.8"
  17. mlflow = "^1.23.1"
  18. pygit2 = "1.8.0"
  19. papermill = "^2.3.4"
  20. [tool.poetry.dev-dependencies]
  21. ipykernel = "^6.7.0"
  22. pytest = "^6.2.5"
  23. pre-commit = "^2.17.0"
  24. [build-system]
  25. requires = ["poetry-core>=1.0.0"]
  26. build-backend = "poetry.core.masonry.api"
  27. [tool.black]
  28. line-length = 79
  29. include = '\.pyi?$'
  30. exclude = '''
  31. /(
  32. \.git
  33. | \.hg
  34. | \.mypy_cache
  35. | \.tox
  36. | \.venv
  37. | _build
  38. | buck-out
  39. | build
  40. )/
  41. '''
Tip!

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

Comments

Loading...