forked from bjbschmitt/AMFM_decompy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.59 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
# -*- coding: utf-8 -*-
import io
from setuptools import setup
try:
long_description = io.open('README.md',encoding='utf8').read()
except:
long_description ='Package containing the tools necessary for decomposing a \
speech signal into its modulated components, aka AM-FM decomposition.'
setup(
name = 'AMFM_decompy_cuda',
version = '0.0.0',
author = 'Richard Hemphill',
author_email = '[email protected]',
packages = ['amfm_decompy_cuda'],
scripts = ['bin/AMFM_test.py'],
package_data = {'amfm_decompy_cuda': ['*.wav']},
install_requires = ['numpy', 'scipy',],
url = 'https://github.com/richardhemphill/AMFM_decompy_cuda/',
license = 'LICENSE.txt',
description = 'Package containing the tools necessary for decomposing a \
speech signal into its modulated components, aka AM-FM decomposition.',
long_description = long_description,
long_description_content_type = 'text/markdown',
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords = 'Python, speech, pitch, QHM, YAAPT, modulated components, \
AM-FM decomposition',
zip_safe = False,
include_package_data = True,
)