-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.04 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
[build-system]
requires = ["pybind11>=2.2", "numpy>=2.0", "setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
fpsim2-create-db = "FPSim2.scripts.create_fpsim2_fp_db:main"
[project]
name = "FPSim2"
version = "0.7.3"
authors = [
{ name = "Eloy Félix", email = "[email protected]" }
]
maintainers = [
{name = "Eloy Félix", email = "[email protected]"}
]
description = "Simple package for fast molecular similarity searching"
readme = "README.md"
urls = { Homepage = "https://github.com/chembl/FPSim2" }
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Chemistry"
]
dependencies = [
"rdkit>=2022.3.3",
"tables>=3.10",
"numpy>=1.14",
"sqlalchemy>=1.4.47",
"scipy",
"tqdm"
]