-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·24 lines (23 loc) · 925 Bytes
/
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
import setuptools
from Cython.Build import cythonize
from distutils.extension import Extension
import numpy
extensions = [Extension("magnet/*", ["magnet/cutils.pyx"],
include_dirs=[numpy.get_include()])]
setuptools.setup(
name="magnet-learn",
setup_requires=["cython", "keras", "tqdm", "networkx"],
install_requires=["cython", "keras", "tqdm", "networkx"],
ext_modules=cythonize(extensions),
version="0.0.3",
author="Maixent Chenebaux",
author_email="[email protected]",
description="MAnifold learning form weighted Graphs and NETworks",
url="https://github.com/kerighan/magnet",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"])