-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (44 loc) · 950 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hippo-db"
version = "0.3.31"
authors = [
{ name = "Max Winokan", email = "max@winokan.com" },
]
description = "Hit Interaction Profiling and Procurement Optimisation"
readme = "README.md"
requires-python = ">=3.10"
requires = []
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"rdkit == 2023.9.1",
"molparse >= 0.0.28",
"mpytools >= 0.0.21",
"tqdm",
"jupyterlab",
"pycule",
"chardet",
"pandas",
"yattag",
"hirsch",
"hippo_plot",
"scikit-learn",
"openpyxl",
"ipywidgets",
"networkx",
"openmm",
"apsw"
]
[project.urls]
"Homepage" = "https://hippo.winokan.com"
"Bug Tracker" = "https://github.com/mwinokan/HIPPO/issues"
[tool.hatch.build]
include = [
"hippo/*.py",
]