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 533 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
  1. [tool.poetry]
  2. name = "chess-embedding-learning"
  3. version = "0.1.0"
  4. description = "Learn embeddings for chess positions"
  5. authors = ["Patrick Frank <patr.frank@gmx.de>"]
  6. [tool.poetry.dependencies]
  7. python = ">=3.8,<3.11"
  8. tensorflow = "^2.10.0"
  9. numpy = "^1.23.4"
  10. chess = "^1.9.3"
  11. # chess-embedding = "^0.1.4"
  12. chess-embedding = { path = "../chess-embedding", develop = true }
  13. [tool.poetry.dev-dependencies]
  14. dvc = "^2.34.1"
  15. ipykernel = "^6.17.1"
  16. [build-system]
  17. requires = ["poetry-core>=1.0.0"]
  18. 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...