-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 715 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open('README.md','r') as fh:
README = fh.read()
VERSION = "1.4"
setuptools.setup(
# Needed to silence warnings (and to be a worthwhile package)
name = 'cits',
version = VERSION,
author = 'Rahul Biswas',
description = 'CITS algorithm for inferring causality from time series data',
long_description= README,
long_description_content_type = 'text/markdown',
install_requires=['numpy','scipy','pandas','rpy2','networkx',],
url='https://github.com/biswasr/CITS',
packages=setuptools.find_packages(),
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)