-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 927 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
24
25
26
27
from setuptools import setup, find_packages
version = '0.1.1'
setup(
name='sompy',
version=version,
description="Numpy based SOM Library",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
],
keywords='som, self organizing map, machine learning',
author='Yota',
author_email='[email protected]',
url='https://github.com/ttlg/sompy',
license='MIT',
packages=find_packages(exclude=['examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=["numpy"]
)