-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (20 loc) · 836 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "smooth-convex-kl-nmf",
version = "0.0.1",
author = "Emmanouil Theofanis Chourdakis",
author_email = "[email protected]",
description = ("An implementation of Essid, S. et al Smooth+Convex KL-NMF method for speaker diarization, in python."),
license = "BSD",
keywords = "nmf matrix-factorization nonnegative-matrix-factorization",
url = "https://github.com/mmxgn/smooth-convex-kl-nmf",
packages=['scnmf', 'tests'],
long_description=read('README.md'),
classifiers=[ 'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Multimedia :: Sound/Audio :: Analysis'
],
)