forked from datamol-io/molfeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
133 lines (115 loc) · 2.77 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "molfeat"
description = "molfeat - the hub for all your molecular featurizers"
dynamic = ["version"]
authors = [
{ name = "Emmanuel Noutahi", email = "[email protected]" },
]
readme = "README.md"
license = { text = "Apache" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"tqdm",
"loguru",
"joblib",
"filelock",
"fsspec>=2021.9",
"s3fs >=2021.9",
"gcsfs >=2021.9",
"pandas",
"numpy",
"scipy",
"torch",
"datamol >=0.8.0",
"pyyaml",
"platformdirs",
"matplotlib",
"h5py",
"pyarrow",
"pydantic",
"platformdirs",
"scikit-learn",
"packaging",
"pmapper",
]
[project.optional-dependencies]
dgl = [
"dgl",
"dgllife",
]
graphormer = [
"graphormer-pretrained",
]
transformer = [
"tokenizers <0.13.2",
"transformers",
"sentencepiece",
]
fcd = [
"fcd_torch"
]
viz = [
"nglview",
"ipywidgets"
]
all = [
"dgl",
"dgllife",
"graphormer-pretrained",
"tokenizers <0.13.2",
"transformers",
"fcd_torch",
"nglview",
"ipywidgets",
]
[project.urls]
Website = "https://molfeat.datamol.io"
"Source Code" = "https://github.com/datamol-io/molfeat"
"Bug Tracker" = "https://github.com/datamol-io/molfeat/issues"
Documentation = "https://molfeat-docs.datamol.io/"
[tool.setuptools]
include-package-data = true
zip-safe = false
license-files = ["LICENSE"]
[tool.setuptools_scm]
fallback_version = "dev"
[tool.setuptools.packages.find]
where = ["."]
include = ["molfeat", "molfeat.*"]
exclude = []
namespaces = true
[tool.setuptools.package-data]
"molfeat.data" = ["**/*"]
[tool.black]
line-length = 100
target-version = ['py39', 'py310']
include = '\.pyi?$'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--verbose --cov-report xml --cov-report term --color yes"
testpaths = ["tests"]
norecursedirs = "tests/helpers"
[tool.coverage.run]
omit = ["setup.py", "tests/*"]
[tool.coverage.xml]
output = "cov.xml"