forked from Manciukic/xpysom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.94 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
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.7',
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'],
extras_require={
'cuda90': ['cupy-cuda90'],
'cuda92': ['cupy-cuda92'],
'cuda100': ['cupy-cuda100'],
'cuda101': ['cupy-cuda101'],
'cuda102': ['cupy-cuda102'],
'cuda110': ['cupy-cuda110'],
'cuda111': ['cupy-cuda111'],
'cuda112': ['cupy-cuda112'],
},
url='https://github.com/Manciukic/xpysom',
download_url='https://github.com/Manciukic/xpysom/archive/v1.0.5.tar.gz',
keywords=keywords,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
zip_safe=False,
)