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. [build-system]
  2. requires = ["poetry-core>=1.0.0"]
  3. build-backend = "poetry.core.masonry.api"
  4. [tool.mypy]
  5. exclude = ["source/thesis/dashboard", "notebook"]
  6. [tool.poetry]
  7. name = "thesis-doctorate"
  8. version = "0.0.0"
  9. description = "🎓 Undertaking a doctoral thesis from the University of the West of Englands's PhD programme."
  10. authors = ["Emmanuel M. Smith <sinclair.smith@uwe.ac.uk>"]
  11. packages = [{ include = "thesis", from = "source" }]
  12. [tool.poetry.dependencies]
  13. python = "^3.8"
  14. # Scripting.
  15. hug = "^2.6.1"
  16. PyYAML = "^6.0"
  17. # Data.
  18. dvc = { extras = ["all"], version = "^2.9.5" }
  19. numpy = "^1.19.0"
  20. openpyxl = "^3.0.9"
  21. pandas = "^1.2.3"
  22. # Modelling.
  23. prophet = "^1.0.1"
  24. psutil = "^5.9.0"
  25. sklearn = "^0.0"
  26. torch = "^1.10.0"
  27. # Notebooks/dashboards.
  28. jupyter-dash = "^0.4.0"
  29. jupyterlab = "^3.2.5"
  30. ipywidgets = "^7.7.0"
  31. ray = "^1.12.0"
  32. [tool.poetry.dev-dependencies]
  33. # Development tools.
  34. parquet-cli = "^1.3"
  35. # Standards adherance.
  36. bandit = "^1.7.2"
  37. black = "^22.3.0"
  38. flake8 = "^4.0.1"
  39. isort = "^5.9.3"
  40. mdformat = "^0.7.10"
  41. mypy = "^0.931"
  42. nbqa = "^1.2.2"
  43. pandas-stubs = "^1.2.0"
  44. pre-commit = "^2.18.0"
  45. pydocstyle = "^6.1.1"
  46. pyupgrade = "^2.29.1"
  47. types-PyYAML = "^6.0.5"
Tip!

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

Comments

Loading...