-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
executable file
·29 lines (25 loc) · 1.12 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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst', 'r') as f:
readme = f.read()
setup(name='som-pbc',
version='1.0.2',
description='self organizing maps with periodic boundary conditions',
long_description=readme,
author='Alex Müller',
author_email='alexarnimueller@protonmail.com',
url='https://github.com/alexarnimueller/som',
license='MIT',
keywords="SOM embedding machine learning chemoinformatics bioinformatics datascience descriptor similarity",
packages=['som'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'],
install_requires=['numpy', 'scipy', 'matplotlib', 'scikit-learn']
)