forked from skinniderlab/CLM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 1.73 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
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "clm-harvest"
authors = [
{name="Michael Skinnider", email="skinnider@princeton.edu"},
{name="David Meijer", email="dm5950@princeton.edu"},
]
description = "De novo generation of specialized metabolites for biosynthetic gene clusters"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"deepsmiles",
"einops",
"fcd_torch",
"numpy",
"opt_einsum",
"pandas",
"pulp<2.8.0",
"rdkit",
"s4dd @ git+https://github.com/GuptaVishu2002/s4-for-de-novo-drug-design.git@fix-module-library-packaging",
"scikit-learn",
"scipy==1.11.1",
"selfies",
# snakemake->stopit needs pkg_resources, but is failing
# to specify setuptools as a dependency
"setuptools",
"snakemake",
"torch",
"tqdm",
"seaborn",
"matplotlib"
]
dynamic = ["version"]
[project.scripts]
clm = "clm.__main__:main"
harvest = "harvest.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["clm", "clm.*", "harvest", "harvest.*"]
[tool.setuptools_scm]
write_to = "src/clm/_version.py"
[tool.setuptools.package-data]
clm = ["data/*.smi"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-sv"
[tool.black]
line-length = 80
target-version = ["py310"]
[project.optional-dependencies]
dev = [
"build",
"coverage",
"coveralls",
"myst-parser",
"pre-commit",
"pytest",
"sphinx",
"sphinxcontrib-bibtex",
"sphinx_rtd_theme",
"twine"
]