-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (24 loc) · 892 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
from setuptools import setup, find_packages
__version__ = '0.6.1'
setup(
name = 'metalearn',
packages = find_packages(include=['metalearn', 'metalearn.*']),
version = __version__,
description = 'A package to aid in metalearning',
author = 'Roland Laboulaye, Brandon Schoenfeld, Casey Davis',
url = 'https://github.com/byu-dml/metalearn',
download_url = 'https://github.com/byu-dml/metalearn/archive/{}.tar.gz'.format(__version__),
keywords = ['metalearning', 'machine learning', 'metalearn'],
license='MIT',
install_requires = [
'numpy<=1.18.2',
'scikit-learn<=0.22.2.post1',
'pandas<=1.0.3'
],
classifiers = [
'Programming Language :: Python :: 3.6'
],
python_requires='~=3.6',
include_package_data=True,
)