-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.04 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
[project]
name = "povme"
version = "2.2.2"
description = "Detect and characterize protein pockets."
authors = [
{name = "Durrant Lab", email = "durrantj@pitt.edu"}
]
maintainers = [
{name = "Jacob Durrant", email = "durrantj@pitt.edu"},
{name = "Alex Maldonado", email = "alex.maldonado@pitt.edu"},
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10,<3.13"
# TODO: Keep this here until pixi releases building capabilities
dependencies = [
"numpy>=2.1.3,<3",
"scipy>=1.14.1,<2",
"pydantic>=2.10.2,<3",
"pyyaml>=6.0.2,<7",
"loguru>=0.7.2,<0.8",
"ray>=2.38.0,<3",
"pymolecule@git+https://github.com/durrantlab/pymolecule",
]
[project.urls]
Repository = "https://github.com/durrantlab/POVME"
Documentation = "https://durrantlab.github.io/POVME/"
Homepage = "https://durrantlab.github.io/POVME/"
[project.scripts]
povme = "povme.cli:povme_cli"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["povme*"]