forked from scikit-tda/kepler-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (49 loc) · 1.69 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
51
52
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='kmapper',
version='1.1.6',
description='Python implementation of Mapper algorithm for Topological Data Analysis.',
long_description=long_description,
long_description_content_type="text/markdown",
author='HJ van Veen, Nathaniel Saul',
author_email='[email protected], [email protected]',
url='http://kepler-mapper.scikit-tda.org',
license='MIT',
packages=['kmapper'],
include_package_data=True,
extras_require={
'testing': [
'pytest',
'networkx',
'matplotlib',
'python-igraph',
'plotly',
'ipywidgets'
]
},
install_requires=[
'scikit-learn',
'numpy',
'scipy',
'Jinja2'
],
python_requires='>=2.7,!=3.1,!=3.2,!=3.3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='mapper, topology data analysis, algebraic topology, unsupervised learning'
)