forked from OpenBioML/chemnlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 917 Bytes
/
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
44
45
[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.8.*" # required for gpt-neox
dependencies = [
"datasets>=2.8.0",
"numpy>=1.21.2",
"openpyxl>=3.0.9",
"pandas>=1.3.3",
"peft",
"pydantic",
"pytdc>=0.3.9",
"transformers",
"wandb",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black[jupyter]>=22.1.0",
"fire",
"flake8>=3.8.3",
"isort>=5.0.0",
"pre-commit",
"pydantic_yaml",
"pytest",
"pubchempy"
]
dataset_creation = [
"PyTDC",
]
training = [
"deepspeed>=0.8.2" # https://github.com/microsoft/DeepSpeed/pull/2863
]
[tool.setuptools_scm]
version_scheme = "post-release"