-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
46 lines (38 loc) · 1.54 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
from setuptools import setup, find_packages
import mser
VERSION = mser.__version__
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
def parse_requirements():
with open('./requirements.txt', encoding="utf-8") as f:
requirements = f.readlines()
return requirements
if __name__ == "__main__":
setup(
name='mser',
packages=find_packages(),
author='yeyupiaoling',
version=VERSION,
install_requires=parse_requirements(),
description='Speech Emotion Recognition toolkit on Pytorch',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/yeyupiaoling/SpeechEmotionRecognition-Pytorch',
download_url='https://github.com/yeyupiaoling/SpeechEmotionRecognition-Pytorch.git',
keywords=['audio', 'pytorch', 'emotion'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Topic :: Utilities'
],
license='Apache License 2.0',
ext_modules=[])