generated from JacksonBurns/blank-python-project
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (44 loc) · 1.23 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "fastprop"
version = "1.0.6"
authors = [
{ name = "Jackson Burns" },
]
license = { text = "MIT" }
description = "Fast Molecular Property Prediction with mordredcommunity"
classifiers = [
"Programming Language :: Python :: 3",
]
urls = { Homepage = "https://github.com/JacksonBurns/fastprop" }
requires-python = ">=3.8"
dependencies = ["pyyaml", "lightning", "torch>=1.13", "mordredcommunity", "astartes[molecules]", "tensorboard", "psutil", "polars", "pandas", "pyarrow", "numpy<2.0.0"]
[project.optional-dependencies]
dev = ["black", "isort", "pytest", "pytest-cov"]
hopt = ["ray[train]", "optuna"]
shap = ["shap<0.45", "matplotlib"]
bmark = ["py2opsin"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
fastprop = "fastprop.cli.base:main"
[tool.isort]
profile = "black"
[tool.black]
line-length = 150
[tool.autopep8]
max_line_length = 150
in-place = true
recursive = true
aggressive = 3
[tool.pytest.ini_options]
addopts = "--cov fastprop"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["fastprop*"]
exclude = ["benchmarks*", "examples*", "test*"]