We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 929f0d0 + be01300 commit d976477Copy full SHA for d976477
1 file changed
setup.py
@@ -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