-
Notifications
You must be signed in to change notification settings - Fork 199
/
setup.py
34 lines (27 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
# -*- coding: utf-8 -*-
# Copyright (C) 2016 Diviyan Kalainathan
# Licence: Apache 2.0
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
with open('README.md', encoding="utf-8") as f:
long_description = f.read()
def setup_package():
setup(name='cdt',
version='0.6.0',
description='A Toolbox for causal graph inference',
long_description="Documentation available at https://fentechsolutions.github.io/CausalDiscoveryToolbox/html/index.html",
long_description_content_type="text/markdown",
packages=find_packages(exclude=['examples', 'tests', 'tests.*']),
url='https://github.com/FenTechSolutions/CausalDiscoveryToolbox',
package_data={'': ['**/*.R', '**/*.csv']},
install_requires=['numpy', 'scipy', 'scikit-learn',
'joblib', 'pandas', 'statsmodels',
'networkx', 'skrebate', 'tqdm', 'GPUtil', 'requests'],
include_package_data=True,
author='Diviyan Kalainathan',
author_email='[email protected]',
license='Apache 2.0')
if __name__ == '__main__':
setup_package()