forked from mindspore-lab/mindaudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
with open("README.md", mode="r", encoding="utf-8") as f:
long_description = f.read()
exec(open("mindaudio/version.py").read())
setup(
name="mindaudio",
author="MindSpore Lab",
author_email="[email protected]",
version=__version__,
url="https://github.com/mindspore-lab/mindaudio",
project_urls={
"Sources": "https://github.com/mindspore-lab/mindaudio",
"Issue Tracker": "https://github.com/mindspore-lab/mindaudio/issues",
},
description="A toolbox of audio models and algorithms based on MindSpore.",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache Software License 2.0",
include_package_data=True,
packages=find_packages(include=["mindaudio", "mindaudio.*"]),
python_requires=">=3.8",
install_requires=[
"numpy",
"pyyaml",
"tqdm",
"scipy",
"sentencepiece",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
zip_safe=False,
)