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 624 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
  1. [tool.poetry]
  2. name = "news_cat"
  3. version = "0.3.0"
  4. description = "Turkish Text Categorization - Example for ML projects"
  5. authors = ["Arslan <rslnkrmt2552@gmail.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. pandas = "^1.2.3"
  9. numpy = "^1.20.1"
  10. pyarrow = "^3.0.0"
  11. scikit-learn = "^0.24.1"
  12. spacy = "^3.0.5"
  13. fastapi = "^0.63.0"
  14. joblib = "^1.0.1"
  15. gunicorn = "^20.0.4"
  16. python-multipart = "^0.0.5"
  17. uvicorn = {extras = ["standard"], version = "^0.13.4"}
  18. [tool.poetry.dev-dependencies]
  19. dvc = {extras = ["s3", "ssh"], version = "^2.0.6"}
  20. [build-system]
  21. requires = ["poetry-core>=1.0.0"]
  22. build-backend = "poetry.core.masonry.api"
Tip!

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

Comments

Loading...