forked from mqcomplab/bblean
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.33 KB
/
pyproject.toml
File metadata and controls
86 lines (78 loc) · 2.33 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
77
78
79
80
81
82
83
84
85
86
[project]
name = "bblean"
authors = [
{name = "The Miranda-Quintana Lab and other BitBirch developers"},
{name = "Ramon Alain Miranda Quintana", email = "quintana@chem.ufl.edu"},
{name = "Krisztina Zsigmond", email = "kzsigmond@ufl.edu"},
{name = "Ignacio Pickering", email = "ipickering@ufl.edu"},
{name = "Kenneth Lopez Perez", email = "klopezperez@chem.ufl.edu"},
{name = "Miroslav Lzicar", email= "miroslav.lzicar@deepmedchem.com"},
]
license = "GPL-3.0-only"
license-files = ["LICENSE"]
description = "BitBirch-Lean Python package"
requires-python = ">=3.11"
dynamic = ["version"]
readme = "README.md"
dependencies = [
"scipy",
"rdkit",
"numpy>=2.0",
"pandas",
"psutil",
"matplotlib",
"colorcet",
"seaborn",
"scikit-learn",
"rich",
"typer",
# Dimensionality reduction
"opentsne",
"umap-learn",
"pynndescent", # makes umap faster
]
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
#"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
[build-system]
requires = ["setuptools>=75.6", "setuptools-scm>=9", "pybind11", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://github.com/mqcomplab/bblean.git"
repository = "https://github.com/mqcomplab/bblean.git"
documentation = "https://github.com/mqcomplab/bblean.git"
[project.scripts]
bb="bblean.cli:app"
[tool.setuptools_scm]
version_file = "bblean/_version.py"
fallback_version="0.0.0"
[tool.setuptools.packages.find]
where = ["."]
include = ["bblean*"]
[tool.black]
line-length = 88
target_version = ["py311"]
[tool.mypy]
ignore_missing_imports = true
warn_redundant_casts = true
warn_unused_configs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_any_generics = true
python_version = "3.11"
[tool.coverage.run]
omit = ["*/_legacy/*", "*/tests/*", "setup.py"]