-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (26 loc) · 910 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
from setuptools import find_packages, setup
from pathlib import Path
from mfdfa_toolkit import __version__
long_description = Path('README.md').read_text(encoding='utf8')
setup(
name="mfdfa_toolkit",
version=__version__,
description="Multi-Fractal Detrended Fluctuation Analysis (MFDFA)",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/mohsenim/Multifractality",
author="Mahdi Mohseni",
author_email="[email protected]",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"numpy",
"scikit-learn",
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)