-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 782 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 782 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
25
26
27
28
29
from setuptools import setup
import causal_attribution
setup(
name='causal_attribution',
version=causal_attribution.__version__,
description='Select and score features for causal inferences.',
long_description=causal_attribution.__doc__,
author='Reid Pryzant',
author_email='rpryzant@stanford.edu',
url='https://github.com/rpryzant/causal_attribution',
keywords=['feature selection'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['causal_attribution'],
install_requires=[
'scipy',
'sklearn',
'nltk',
'pandas',
'torch>=1.0.0'
],
python_requires='>=3.6'
)