Skip to content

Commit

Permalink
Merge pull request #17 from AustinRochford/add-setup
Browse files Browse the repository at this point in the history
Add setup.py
  • Loading branch information
AustinRochford committed Jan 8, 2017
2 parents 929f0d0 + be01300 commit d976477
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from setuptools import setup

setup(
name='pycebox',
version='0.0.1',
description='The Python Individual Conditional Expectation Toolbox',
url='https://github.com/AustinRochford/PyCEbox',
author='Austin Rochford',
author_email='austin.rochford@gmail.com',
license='MIT',
packages=['pycebox'],
install_requires=[
'matplotlib',
'numpy',
'pandas',
'six'
]
)

0 comments on commit d976477

Please sign in to comment.