-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 738 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="instruct-musicgen",
version="0.1.0",
description="Instruct-MusicGen: Unlocking Text-to-Music Editing for Music Language Models via Instruction Tuning",
author="Yixiao Zhang",
author_email="[email protected]",
url="https://github.com/ldzhangyx/instruct-MusicGen",
install_requires=["lightning", "hydra-core"],
packages=find_packages(),
python_requires=">=3.11.7",
# use this to customize global commands available in the terminal after installing the package
entry_points={
"console_scripts": [
"train_command = src.train:main",
"eval_command = src.eval:main",
]
},
)