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.2 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
  1. [tool.poetry]
  2. name = "chemformer"
  3. version = "2.1.0"
  4. description = "Smiles-based synthesis prediction."
  5. authors = ["Irwin, Ross <ross.irwin1@astrazeneca.com>"]
  6. maintainers = [
  7. "Westerlund, Annie <annie.westerlund@astrazeneca.com>",
  8. "Saigiridharan, Lakshidaa <lakshidaa.saigiridharan@astrazeneca.com>",
  9. "Peter Hartog <peter.hartog@astrazeneca.com>",
  10. "Genheden, Samuel <samuel.genheden@astrazeneca.com>",
  11. ]
  12. license = "Apache 2.0"
  13. packages = [{ include = "molbart" }]
  14. [tool.poetry.dependencies]
  15. python = "3.7.11"
  16. rdkit = "2022.9.3"
  17. torch = "1.8.1"
  18. pytorch-lightning = "1.2.3"
  19. pysmilesutils = { git = "https://github.com/MolecularAI/pysmilesutils.git" }
  20. hydra-core = "^1.3.2"
  21. hydra-colorlog = "^1.2.0"
  22. hydra-optuna-sweeper = "^1.2.0"
  23. fastapi = "0.98.0"
  24. pandas = "1.3.5"
  25. [tool.poetry.dev-dependencies]
  26. pre-commit = "*"
  27. pytest = "*"
  28. pytest-cov = "*"
  29. black = "*"
  30. isort = "*"
  31. flake8 = "*"
  32. mypy = "*"
  33. [tool.poetry.group.extras.dependencies]
  34. wandb = "^0.16.5"
  35. textbrewer = "^0.2.1.post1"
  36. eco2ai = "^0.3.9"
  37. [tool.poetry.group.dev.dependencies]
  38. pytest-mock = "3.10.0"
  39. pytest-datadir = "1.4.1"
  40. [build-system]
  41. requires = ["poetry-core>=1.0.0"]
  42. build-backend = "poetry.core.masonry.api"
  43. [tool.black]
  44. line-length = 120
Tip!

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

Comments

Loading...