forked from ulfaslak/py_pcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 828 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
23
from setuptools import setup
setup(
name='py_pcha',
version='0.1.2',
description='Python implemenation of PCHA algorithm',
url='https://github.com/ulfaslak/py_pcha',
download_url = 'https://github.com/ulfaslak/py_pcha/tarball/0.1',
author='Ulf Aslak',
author_email='[email protected]',
license='MIT',
packages=['py_pcha'],
zip_safe=False,
keywords = ['Archetypal Analysis', 'AA', 'PCHA', 'Clustering', 'Machine Learning', 'Signal Processing'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
]
)