-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (31 loc) · 978 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""Setup file."""
import os
from distutils.core import setup
NAME = 'takensembed'
install_requires = [ 'numpy>=1.13.1',
'scipy>=0.19.1',
'future>=0.16.0',
'scikit-learn>=0.18.2']
def read(fname):
"""Read the readme file."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=NAME,
install_requires=install_requires,
version="0.1",
author="Sander Keemink",
author_email="[email protected]",
description="Uses Taken's embedding theorem to estimate causality" +
" between variables. ",
url="https://github.com/swkeemink/takens-embed",
download_url="",
package_dir={NAME: "./takensembed"},
packages=[NAME],
license="MIT",
long_description=read('README.md'),
classifiers=[
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
)