-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (29 loc) · 966 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
"""Setup script for mtlearn"""
from __future__ import absolute_import
from setuptools import find_packages
from setuptools import setup
setup(
name='mtlearn',
version='0.1.2',
description="multi-task learning package with reproduced papers",
url='https://github.com/AmazaspShumik/mtlearn',
author='Amazasp Shaumyan',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['tests*']),
install_requires=[
'numpy>=1.18.0',
'scipy>=0.15.1',
'scikit-learn>=0.21',
'tensorflow>=2.0.0-beta1',
'keras-tuner>=1.0.0'],
test_suite='tests',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Operating System :: Unix',
'Operating System :: MacOS',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'],
)