-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (55 loc) · 1.91 KB
/
setup.py
File metadata and controls
57 lines (55 loc) · 1.91 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for nb_version_control"""
from __future__ import print_function
from setuptools import find_packages, setup
setup(
name='mlbot',
description="Version control, experiment tracking, script exporting, etc. for Jupyter notebooks",
long_description="",
version='0.0.1a1dev14',
author='Sirong Huang',
author_email='sirong.huang@selko.io',
url=('https://github.com/selko-technologies/MLbot'),
keywords=['IPython', 'Jupyter', 'notebook','version control','experiment tracking','script export'],
license='BSD-2-Clause',
platforms=['Any'],
packages=['mlbot'],
include_package_data=True,
data_files=[
# like `jupyter nbextension install --sys-prefix`
("share/jupyter/nbextensions/mlbot", [
"mlbot/static/main.js",
]),
("share/jupyter/nbextensions/mlbot", [
"mlbot/static/handlers.js",
]),
# like `jupyter nbextension enable --sys-prefix`
("etc/jupyter/nbconfig/notebook.d", [
"jupyter-config/nbconfig/notebook.d/mlbot.json"
]),
# like `jupyter serverextension enable --sys-prefix`
("etc/jupyter/jupyter_notebook_config.d", [
"jupyter-config/jupyter_notebook_config.d/mlbot.json"
])
],
#! need to fix dependency packages more + fastai requirement
install_requires=[
'mlflow==1.0.0',
'notebook >=4.0',
'tornado',
'boto3'
],
zip_safe=False,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Topic :: Utilities',
]
)