forked from JustGlowing/minisom
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include Readme.md | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,39 @@ | ||
#!/usr/bin/env python | ||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
# read the contents of your README file | ||
from os import path | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'Readme.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
description = 'Minimalistic implementation of batch Self Organizing Maps (SOM) for parallel execution on CPU or GPU.' | ||
keywords = ['machine learning', 'neural networks', 'clustering', 'dimentionality reduction'] | ||
|
||
setup(name='XPySom', | ||
version='1.0.0', | ||
version='1.0.5', | ||
description=description, | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Riccardo Mancini', | ||
author_email="[email protected]", | ||
package_data={'': ['Readme.md']}, | ||
include_package_data=True, | ||
license="GNU General Public License v3.0", | ||
packages=['xpysom'], | ||
install_requires=['numpy'], | ||
extra_requires={'gpu': ['cupy']}, | ||
extras_require={ | ||
'cuda90': ['cupy-cuda90'], | ||
'cuda92': ['cupy-cuda92'], | ||
'cuda100': ['cupy-cuda100'], | ||
'cuda101': ['cupy-cuda101'], | ||
'cuda102': ['cupy-cuda102'], | ||
}, | ||
url='https://github.com/Manciukic/xpysom', | ||
download_url='https://github.com/Manciukic/xpysom/archive/v1.0.0.tar.gz', | ||
download_url='https://github.com/Manciukic/xpysom/archive/v1.0.5.tar.gz', | ||
keywords=keywords, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Programming Language :: Python :: 3', | ||
|
@@ -28,5 +42,6 @@ | |
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
], | ||
], | ||
zip_safe=False, | ||
) |