Skip to content

Commit be01300

Browse files
Add setup.py
1 parent 929f0d0 commit be01300

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='pycebox',
5+
version='0.0.1',
6+
description='The Python Individual Conditional Expectation Toolbox',
7+
url='https://github.com/AustinRochford/PyCEbox',
8+
author='Austin Rochford',
9+
author_email='[email protected]',
10+
license='MIT',
11+
packages=['pycebox'],
12+
install_requires=[
13+
'matplotlib',
14+
'numpy',
15+
'pandas',
16+
'six'
17+
]
18+
)

0 commit comments

Comments
 (0)