mirror of
https://github.com/modAL-python/modAL.git
synced 2022-05-17 00:31:33 +03:00
15 lines
488 B
Python
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'],
|
|
)
|