-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 820 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (24 loc) · 820 Bytes
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
import os
from setuptools import setup, find_packages
LONG_DESCRIPTION = """
"""
setup(
name="MXConsole",
version="0.0.1a1",
description="A standalone tensorboard port for mxnet and other framework",
long_description=LONG_DESCRIPTION,
author="google bravomikekilo",
author_email='bravomikekilo@buaa.edu.cn',
license='Apache-2.0',
url='https://github.com/bravomikekilo/mxconsole',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='mxnet visualzation tensorboard standalone',
packages=find_packages(exclude=['mxconsole.scripts']),
install_requires=['pillow', 'numpy'],
include_package_data=True,
)