-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
33 lines (29 loc) · 1.04 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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup, find_packages
from clusim import __package__, __description__, __version__
setup(name=__package__,
version=__version__,
description='Clustering simliarity',
long_description=__description__,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
],
keywords="clustering cluster comparison similarity data science network science network community",
url="https://github.com/Hoosier-Clusters/clusim",
author = 'Alexander Gates <[email protected]> \n YY Ahn <[email protected]>',
license="MIT",
packages = find_packages(),
install_requires=[
'numpy',
'scipy',
'networkx',
'mpmath',
'igraph'
],
include_package_data=True
)