forked from AstraZeneca/FWAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (59 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (59 loc) · 1.68 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
[project]
name = "fwanalysis"
description = "FWAnalysis"
authors = [{name = "AstraZeneca"}]
maintainers = [{name = "Hannes Löffler", email = "hannes.loeffler@gmail.com"}]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = [
"Free-Wilson analysis",
"molecules",
"chemistry",
"medicinal chemistry",
"computational chemistry",
"cheminformatics",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Typing :: Typed",
]
dynamic = ["version"]
# We go quite defensive and add upper bounds,
# in case major version updates break backward compatibility.
dependencies = [
"numpy >= 2.0, < 3.0",
"pandas >= 3.0, < 4.0",
"rdkit >= 2025, < 2026",
"scikit-learn >= 1.8, < 1.9",
"fastapi < 1.0",
"uvicorn < 1.0",
"python-multipart",
]
[project.scripts]
fwanalysis = "fwanalysis.fwa:main_script"
# FIXME: change urls for public release.
[project.urls]
repository = "https://github.com/azu-biopharmaceuticals-rd/FWAnalysis"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic.version]
attr = "fwanalysis.version.__version__"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [".", "configs"]
include = ["fwanalysis*", "service*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["*.pkl.gz"]
[tool.black]
line-length = 100