-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (33 loc) · 1 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
"""
Build the wheel file for the library eks-ml-pipeline.
"""
from setuptools import find_packages, setup
setup(
name='eks_ml_pipeline',
version='0.0.1',
description='pipeline for eks',
url='',
author= 'Hamza Khokhar, Praveen Mada',
author_email='hamza.khokhar@dish.com, praveen.mada@dish.com',
license='Dish Wireless',
packages=find_packages(include=['eks_ml_pipeline',
'eks_ml_pipeline.feature_engineering',
'eks_ml_pipeline.models',
'eks_ml_pipeline.inputs',
'eks_ml_pipeline.utilities']),
include_package_data=True,
install_requires = [
'pyspark',
'pandas',
'keras',
'tensorflow',
'matplotlib',
'numpy',
'dill',
'scikit_learn',
'statsmodels'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Dish Wireless',
],
)