-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
41 lines (37 loc) · 1.15 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
# coding=utf-8
from setuptools import setup
from pathlib import Path
MAJOR_VERSION = 1
MINOR_VERSION = 0
PATCH_VERSION = 0
project_root = Path(__file__).parent
setup(
name="fdlp_spectrogram",
version=f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}",
author="Samik Sadhu, Martin Kocour",
author_email="[email protected], [email protected]",
description="Modulation Features for Automatic Speech Recognition",
long_description=(project_root / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
license="Apache-2.0 License",
packages=["fdlp"],
keywords="fdlp",
install_requires=[
"numpy>=1.21.1",
"scipy>=1.8.0",
"typeguard",
"click"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3"
],
entry_points={
'console_scripts': [
'make-fdlp = fdlp.bin.cli:cli',
],
}
)