mirror of https://github.com/suno-ai/bark.git
Merge e05718b6b7
into f4f32d4cd4
commit
cdc50b1e01
19
setup.py
19
setup.py
|
@ -1,3 +1,18 @@
|
|||
from setuptools import setup
|
||||
"""A setuptools based setup module.
|
||||
See: <https://packaging.python.org/en/latest/distributing.html>
|
||||
"""
|
||||
import setuptools
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup()
|
||||
setuptools.setup(
|
||||
name="bark_pkg",
|
||||
version="0.1",
|
||||
author_email="apetree1001@email.phoenix.edu",
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue