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 838 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
  1. [tool.poetry]
  2. name = "employee-future-prediction"
  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. shap = "0.39"
  12. xgboost = "1.4.2"
  13. yellowbrick = "1.2.1"
  14. notebook = "^6.4.10"
  15. mlflow = "^1.25.1"
  16. dagshub = "^0.1.8"
  17. hyperopt = "^0.2.7"
  18. streamlit = "^1.8.1"
  19. patsy = "^0.5.2"
  20. pandera = "^0.10.1"
  21. pytest-steps = "^1.8.0"
  22. numpy = "^1.22.4"
  23. llvmlite = "0.34.0"
  24. [tool.poetry.dev-dependencies]
  25. pytest = "^6.2.5"
  26. pre-commit = "^2.17.0"
  27. black = {version = "^22.3.0", allow-prereleases = true}
  28. [build-system]
  29. requires = ["poetry-core>=1.0.0"]
  30. build-backend = "poetry.core.masonry.api"
  31. [tool.black]
  32. line-length = 79
  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. )/
  45. '''
Tip!

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

Comments

Loading...