Skip to content

Commit d976477

Browse files
Merge pull request #17 from AustinRochford/add-setup
Add setup.py
2 parents 929f0d0 + be01300 commit d976477

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

setup.py

Lines changed: 18 additions & 0 deletions
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='austin.rochford@gmail.com',
10+
license='MIT',
11+
packages=['pycebox'],
12+
install_requires=[
13+
'matplotlib',
14+
'numpy',
15+
'pandas',
16+
'six'
17+
]
18+
)

0 commit comments

Comments
 (0)