-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
42 lines (36 loc) · 1.37 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
# -*- coding: utf-8 -*-
"""
Created on Sat Sep 5 22:52:23 2020
@author: MSc. Maciej Rosoł
contact: [email protected], [email protected]
"""
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="Maciej Rosoł",
author_email="[email protected]",
name='nonlincausality',
license="MIT",
description='Python package for Granger causality test with nonlinear (neural networks) forecasting methods.',
version='v2.0.2',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/mrosol/Nonlincausality',
packages=setuptools.find_packages(),
python_requires=">=3.6",
keywords='Granger causality neural networks nonlinear forecasting signals',
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)