-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
90 lines (80 loc) · 1.79 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
87
88
89
90
[build-system]
requires = ["setuptools>=59.6.0"]
build-backend = "setuptools.build_meta"
[project]
# changes for these values should be reflected in docs/source/conf.py as well
name = "neurosnap"
version = "2026.05.06"
authors = [
{name="Keaun Amani"},
]
description = "Neurosnap SDK for bioinformatics, structural biology, and cheminformatics workflows."
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
]
requires-python = ">=3.8"
dependencies = [
"requests>2",
"numpy>1.0.0",
"pandas",
"rdkit>2023",
"tqdm",
"scipy",
"matplotlib",
"Pillow",
"tabulate",
"requests_toolbelt",
]
[project.optional-dependencies]
dev = [
"build",
"pytest",
"twine",
"ruff",
"sphinx==8.1.3",
"sphinx-rtd-theme==3.0.1",
"sphinx-autodoc-typehints==2.5.0",
"pydata-sphinx-theme",
]
clusterprot = [
"scikit-learn",
"umap-learn",
"plotly"
]
kluster = [
"scikit-learn",
"umap-learn",
"plotly"
]
[project.urls]
Homepage = "https://github.com/NeurosnapInc/neurosnap"
Issues = "https://github.com/NeurosnapInc/neurosnap/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
neurosnap = [
"algos/evoef2_lib/*.prm",
"algos/evoef2_lib/*.inp",
"algos/evoef2_lib/*.rtf",
"algos/evoef2_lib/*.lib",
"algos/evoef2_lib/*.npz",
"algos/wolfpsort/data/*.csv",
"algos/wolfpsort/data/*.json",
"algos/wolfpsort/motif_libraries/*.json",
]
[tool.ruff]
line-length = 150
indent-width = 2
[tool.pytest.ini_options]
addopts = "-ra"
markers = [
"slow: may take >10s",
"integration: crosses module boundaries / uses real IO",
"mmseqs2: requires ColabFold MMseqs2 API/network access",
]