-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (63 loc) · 1.78 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "molgen"
version = "0.2.0"
description = "A lightweight toolkit for de novo molecular generation (SMILES/SELFIES; CharRNN, MolGPT, VAE)"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Daoyuan Li" }]
keywords = [
"molecular-generation",
"smiles",
"vae",
"cheminformatics",
"deep-learning",
"drug-discovery",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"numpy>=1.21",
"pandas>=1.5",
"scikit-learn>=1.0",
"rdkit>=2022.9",
"tqdm>=4.60",
]
[project.optional-dependencies]
selfies = ["selfies>=2.1"]
dev = ["pytest>=7.0", "ruff>=0.4", "pre-commit>=3.5"]
[project.urls]
Homepage = "https://github.com/DaoyuanLi2816/molgen"
Repository = "https://github.com/DaoyuanLi2816/molgen"
Issues = "https://github.com/DaoyuanLi2816/molgen/issues"
[project.scripts]
molgen = "molgen.cli:main"
[tool.setuptools.packages.find]
include = ["molgen*"]
[tool.setuptools.package-data]
"molgen" = ["py.typed"]
"molgen.datasets" = ["*.smi"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"