13 строки
397 B
Python
13 строки
397 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='datamations',
|
|
version='1.0',
|
|
description='Automatic generation of explanation of plots and tables from analysis code',
|
|
author='Chinmay Singh',
|
|
author_email='chsingh@microsoft.com',
|
|
packages=['datamations'],
|
|
package_data={'datamations': ['../data-raw/small_salary.csv']},
|
|
install_requires=['pandas', 'ipython', 'palmerpenguins']
|
|
)
|