-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
31 lines (29 loc) · 985 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='nolitsa',
version='0.1',
description='A rudimentary Python module for nonlinear time series analysis',
long_description="""\
NoLiTSA is a Python module that implements some standard algorithms used
for nonlinear time series analysis.""",
keywords='chaos nonlinear time series analysis',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python'
'Programming Language :: Python :: 3',
],
author='Manu Mannattil',
author_email='[email protected]',
license='BSD',
packages=['nolitsa'],
install_requires=['numpy>=1.11.0', 'scipy>=0.17.0'],
test_suite='pytest',
tests_require=['pytest>=7.0.0'],
include_package_data=True,
zip_safe=False
)