-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 747 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="MMDiff",
version="0.0.1",
description="Official PyTorch implementation of 'Joint Sequence-Structure Generation of Nucleic Acid and Protein Complexes with SE(3)-Discrete Diffusion'.",
author="Alex Morehead",
author_email="alex.morehead@gmail.com",
url="https://github.com/Profluent-Internships/MMDiff",
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 = src.train:main",
"sample_command = src.sample:main",
]
},
)