-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
43 lines (36 loc) · 1.38 KB
/
pyproject.toml
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
[tool.poetry]
name = "psmiles"
version = "0.6.10"
description = "A Python package for working with PSMILES (polymer SMILES) strings."
authors = ["Christopher Kuenneth <christopher.kuenneth@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Ramprasad-Group/psmiles"
keywords = ["science", "polymer", "SMILES"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
numpy = ">1.19.0"
pandas = ">1.1.0"
rdkit = ">=2022.3.3"
scikit-learn = "^1.1.2"
canonicalize-psmiles = {git = "https://github.com/Ramprasad-Group/canonicalize_psmiles.git"}
mordred = {version = "^1.2.0", optional = true}
sentence-transformers = {version = "^2.2.0", optional = true}
mkdocs = {version = "^1.4.2", optional = true}
mkdocs-material = {version = "^8.5.11", optional = true}
mkdocstrings = {extras = ["python"], version = "^0.19.0"}
mkdocstrings-python = {version = "^0.8.2", optional = true}
mkdocs-jupyter = {version = "^0.22.0", optional = true}
[tool.poetry.extras]
mordred = ["mordred"]
polyBERT = ["sentence-transformers"]
docs = ["mkdocstrings", "mkdocs", "mkdocs-material", "mkdocstrings-python", "mkdocs-jupyter"]
[tool.poetry.group.dev.dependencies]
black = {version = "^22.8.0", allow-prereleases = true}
pre-commit = "^2.20.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
ipykernel = "^6.6.1"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"