-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 874 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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.6',
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'],
extras_require={'fast': ['numba']},
url='https://github.com/JustGlowing/minisom',
download_url='https://github.com/JustGlowing/minisom/archive/master.zip',
keywords=keywords)