Skip to content

Commit

Permalink
build:add pyproject deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dp-yuanyn committed Mar 20, 2024
1 parent c006c8e commit 7400e3e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion unidock_tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ RUN pip install tqdm

COPY . /opt/unidock_tools
RUN cd /opt/unidock_tools && \
pip install . && \
pip install . --no-deps && \
rm -r /opt/unidock_tools
11 changes: 7 additions & 4 deletions unidock_tools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,19 @@ authors = [
description = "Several docking-related applications based on Uni-Dock."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"rdkit",
"networkx",
"tqdm",
"numpy",
]

license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: Apache Software License",
]
#dependencies = [
# "rdkit",
# "networkx",
#]

[tool.setuptools.package-data]
"*" = ["*.dat"]
Expand Down

0 comments on commit 7400e3e

Please sign in to comment.