-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.67 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
[project]
name = "drfp"
dynamic = ["version"]
description = "An NLP-inspired chemical reaction fingerprint based on basic set arithmetic."
authors = [{ name = "Daniel Probst", email = "daniel.probst@hey.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Chemistry",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"tqdm",
"click",
"xgboost",
"openpyxl",
"numpy>=2.2.2",
"rdkit>=2024.9.4",
"pre-commit>=4.1.0",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"tox>=4.24.1",
"ruff>=0.9.4",
]
[project.urls]
Documentation = "https://github.com/reymond-group/drfp"
Source = "https://github.com/reymond-group/drfp"
Twitter = "https://twitter.com/skepteis"
[project.scripts]
drfp = "drfp.cli:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.pytest]
addopts = "--cov drfp --cov-report term-missing --verbose"
testpaths = ["tests"]
norecursedirs = ["dist", "build", ".tox"]
[tool.ruff]
line-length = 127
output-format = "github"
show-fixes = true
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"