work on pip package
This commit is contained in:
@@ -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",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user