-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
36 lines (31 loc) · 924 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
25
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup
setup(
name = "ensembles",
version = "0.1.5",
author = "Prajwal Kailas",
author_email = "[email protected]",
description = ("A package for ensembling of machine learning models"),
license = "MIT",
keywords = "Ensemble",
url = "https://github.com/unnati-xyz/ensemble-package",
packages=['ensembles'],
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',],
install_requires=[
'pandas',
'numpy',
'xgboost',
'category_encoders',
'sklearn',
'keras',
'joblib',
'hyperopt']
)