Some checks failed
Code Quality Main / code-quality (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.8) (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.9) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.10) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.8) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.9) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.10) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.8) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.9) (push) Has been cancelled
Tests / code-coverage (push) Has been cancelled
22 lines
666 B
Python
22 lines
666 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="FlowDock",
|
|
version="0.0.2",
|
|
description="Geometric Flow Matching for Generative Protein-Ligand Docking and Affinity Prediction",
|
|
author="",
|
|
author_email="",
|
|
url="https://github.com/BioinfoMachineLearning/FlowDock",
|
|
install_requires=["lightning", "hydra-core"],
|
|
packages=find_packages(),
|
|
# use this to customize global commands available in the terminal after installing the package
|
|
entry_points={
|
|
"console_scripts": [
|
|
"train_command = flowdock.train:main",
|
|
"eval_command = flowdock.eval:main",
|
|
]
|
|
},
|
|
)
|