-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (34 loc) · 1.11 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
# Generalized Wrapped Gaussian Mixture Model
# author: https://github.com/ludlows
# 2021-Oct
# file: setup.py
"""
An implementation of the (Generalized) Wrapped Gaussian Mixture Model in the thesis below.
Reference:
@mastersthesis{wang2020speech,
title={Speech Enhancement using Fiber Acoustic Sensor},
author={Wang, Miao},
year={2020},
school={Concordia University},
url={https://spectrum.library.concordia.ca/id/eprint/986722/1/Miao_MASc_S2020.pdf}
}
"""
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="wgmm",
version="0.0.0",
author="Miao Wang",
description="Wrapped Gaussian Mixture Model (WGMM) for angular clustering",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={'wgmm': ["*.py"]},
url="https://github.com/ludlows/wgmm",
setup_requires=['setuptools', 'numpy'],
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
]
)