-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (34 loc) · 1.19 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
from pathlib import Path
from setuptools import find_packages, setup
project_root = Path(__file__).parent
setup(
name='speechcolab',
version='0.0.6-alpha',
python_requires='>=3.6.0',
description='A library of speech gadgets.',
author='The SpeechColab Development Team',
long_description=(project_root / 'README.md').read_text(),
long_description_content_type="text/markdown",
license='Apache-2.0 License',
packages=find_packages(),
install_requires=[
"ijson",
"pyyaml",
"pycryptodome",
"tqdm"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
],
)