-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
58 lines (50 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
'''
Copyright (C) 2015 University of Pittsburgh.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA
Created on Feb 15, 2016
Updated on Dec 25, 2019
@author: Chirayu Wongchokprasitti
'''
from setuptools import setup
setup(
name = "pycausal",
version = "1.2.1",
description = "Python wrapper for the Tetrad Library",
author = "Chirayu Kong Wongchokprasitti",
author_email = '[email protected]',
url = 'http://github.com/bd2kccd/py-causal',
download_url = 'https://github.com/bd2kccd/py-causal/archive/v1.2.1.tar.gz',
license = 'Lesser GNU General Public License version >= 2.1 (LGPL >= 2.1)',
keywords = 'tetrad causal graph bayesian network search discovery',
platforms = ['any'],
classifiers = ['Development Status :: 5 - Beta',
'Intended Audience :: Science/Research',
'License :: LGPL 2.1 License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules'],
package_dir = {'': 'src'},
packages = ['pycausal'],
package_data = {
'pycausal': ['lib/*.jar'],
},
install_requires = [
'javabridge>=1.0.11',
'numpy',
'pandas',
'pyparsing']
)