forked from vanderlei-filho/watson-sklearn-transforms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 605 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='maratonaibm_sklearn_transforms',
version='1.0',
description='''
This is a sample python package for encapsulating custom
tranforms from scikit-learn into Watson Machine Learning
''',
url='https://github.com/LFMAKER/sklearn_transforms/',
author='Leonardo Oliveira',
author_email='lfmaker@outlook.com',
license='BSD',
packages=[
'my_custom_sklearn_transforms'
],
zip_safe=False,
install_requires=[
'imbalanced-learn==0.4.2',
],
)