-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (38 loc) · 1.21 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
from setuptools import setup, Command
from codecs import open
from os import path
currPath = path.abspath(path.dirname(__file__))
# Parse README
with open(path.join(currPath, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Parse version
with open(path.join(currPath, 'tsfracdiff', '__init__.py')) as f:
for line in f:
if line.startswith('__version__'):
version = line.split('"')[1]
setup(
name='tsfracdiff',
description='Efficient and easy to use fractional differentiation transformations for stationarizing time series data.',
version=version,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/adamvvu/tsfracdiff',
author='Adam Wu',
author_email='[email protected]',
packages=['tsfracdiff'],
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License'
],
python_requires='>=3.7',
install_requires=[
'numpy',
'pandas',
'arch',
'joblib'
],
license_files = ('LICENSE',),
)