-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 1021 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
setuptools.setup(
name='reportgen',
version='0.1',
description='The report generator library for the Fiddler platform',
url='https://github.com/shuds13/pyexample',
author='Bashir R',
author_email='bashir@fiddler.ai',
license='BSD 2-clause',
packages=setuptools.find_packages(),
package_data={'reportgen': ['templates/template.docx']},
install_requires=['numpy',
'scipy',
'pandas',
'fiddler-client',
'Jinja2',
'scikit-learn',
'python-docx',
'docxtpl',
'matplotlib',
'docx2pdf',
],
)