1
0
mirror of https://github.com/modAL-python/modAL.git synced 2022-05-17 00:31:33 +03:00
Files
modAL-machine-learning/setup.py
2021-01-07 10:40:40 +01:00

15 lines
488 B
Python

from setuptools import setup, find_packages
setup(
name='modAL',
version='0.4.1',
author='Tivadar Danka',
author_email='85a5187a@opayq.com',
description='A modular active learning framework for Python3',
license='MIT',
url='https://modAL-python.github.io/',
packages=['modAL', 'modAL.models', 'modAL.utils'],
classifiers=['Development Status :: 4 - Beta'],
install_requires=['numpy>=1.13', 'scikit-learn>=0.18', 'scipy>=0.18', 'pandas>=1.1.0'],
)