forked from agosztolai/MARBLE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (45 loc) · 1.29 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
"""Setup MARBLE."""
import numpy
from Cython.Build import cythonize
from setuptools import Extension
from setuptools import find_packages
from setuptools import setup
setup(
name="MARBLE",
version="1.0",
author="Adam Gosztolai",
author_email="[email protected]",
description="""Package for the data-driven representation of non-linear dynamics
over manifolds based on a statistical distribution of local phase portrait features.
Includes specific example on dynamical systems, synthetic- and real neural datasets.""",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=[
"teaspoon==1.3.1",
"matplotlib",
"pandas",
"numpy",
"scipy",
"matplotlib",
"networkx",
"seaborn",
"torch",
"pympl",
"tensorboardX",
"pyyaml",
"POT",
"pyEDM",
"teaspoon",
"umap-learn",
"mat73",
"wget",
],
packages=find_packages(),
include_package_data=True,
package_data={"MARBLE.lib": ["ptu_dijkstra.pyx", "ptu_dijkstra.c"]},
ext_modules=cythonize(
Extension(
"ptu_dijkstra", ["MARBLE/lib/ptu_dijkstra.pyx"], include_dirs=[numpy.get_include()]
)
),
)