work on pip package

This commit is contained in:
mrfakename
2025-05-06 18:59:32 -07:00
parent 54da683d36
commit a5746eaab6
36 changed files with 2928 additions and 1251 deletions
+23
View File
@@ -0,0 +1,23 @@
from setuptools import setup
setup(
name="ace_step",
description="ACE Step: A Step Towards Music Generation Foundation Model",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
version="0.1.0",
packages=["acestep"],
install_requires=open("requirements.txt").read().splitlines(),
author="ACE Studio, StepFun AI",
license="Apache 2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
],
entry_points={
"console_scripts": [
"acestep=acestep.gui:main",
],
},
)