-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (34 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
Setup file for audiotoken
"""
from setuptools import setup, find_packages
setup(
name="audiotoken",
version="0.3.1",
packages=find_packages(),
description="A package for creating audio tokens",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Romit Jain",
author_email="[email protected]",
url="https://github.com/cmeraki/audiotoken",
install_requires=[
open("requirements.txt").read().splitlines(),
],
dependency_links=[
# Make sure to include the `#egg` portion so the `install_requires` recognizes the package
'git+https://github.com/suno-ai/bark.git#egg=bark',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.10",
entry_points={
"console_scripts": [
"audiotoken=audiotoken.scrc:main",
],
},
)