-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.11 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "chemnlp"
description = "Open source chemistry dataset & LLM"
readme = "README.md"
requires-python = "==3.9.*"
dependencies = ["pandas", "pydantic", "pydantic_yaml<=0.11.2", "fire", "loguru"]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pre-commit", "pytest"]
dataset_creation = [
"PyTDC",
"rdkit",
"ruamel.yaml",
"selfies",
"deepsmiles",
"pubchempy",
"bioc",
"pylatexenc",
"canonicalize_psmiles@git+https://github.com/Ramprasad-Group/canonicalize_psmiles.git",
"rxn-chem-utils",
"backoff",
"givemeconformer",
"chembl_webresource_client",
"dask",
"pandarallel"
]
[project.scripts]
chemnlp-generate-meta = "chemnlp.data.meta_yaml_generator:cli"
chemnlp-augment-meta = "chemnlp.data.meta_yaml_augmenter:cli"
chemnlp-sample = "chemnlp.data.sampler_cli:cli"
chemnlp-add-random-split-column = "chemnlp.data.utils:add_random_split_column_cli"
chemnlp-concatenate-jsonl = "chemnlp.data.utils:concatenate_jsonl_files_cli"
[tool.setuptools_scm]
version_scheme = "post-release"