-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1 KB
/
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
36
37
38
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='lab-ml',
version='0.83',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
py_modules=['lab'],
install_requires=[
'click>=6.7',
'minio',
'numpy',
'pandas',
'pyyaml',
'tabulate',
'graphviz',
'joblib'
],
entry_points='''
[console_scripts]
lab=lab.cli:cli
''',
author='Ignat Drozdov',
author_email='[email protected]',
description='Lab: a command line interface for the management of arbitrary machine learning tasks.',
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
],
keywords='ml ai',
url='https://github.com/beringresearch/lab'
)