-
Notifications
You must be signed in to change notification settings - Fork 426
/
setup.py
23 lines (20 loc) · 832 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
#!/usr/bin/env python
from distutils.core import setup
description = 'Minimalistic implementation of the Self Organizing Maps (SOM)'
keywords = ['machine learning', 'neural networks',
'clustering', 'dimentionality reduction']
long_description = 'See the github page https://github.com/JustGlowing/minisom'
setup(name='MiniSom',
version='2.3.3',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author='Giuseppe Vettigli',
package_data={'': ['Readme.md']},
include_package_data=True,
license="MIT",
py_modules=['minisom'],
requires=['numpy'],
url='https://github.com/JustGlowing/minisom',
download_url='https://github.com/JustGlowing/minisom/archive/master.zip',
keywords=keywords)