-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 726 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 726 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
26
27
28
29
30
31
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import setuptools
_VERSION = '0.1'
with open("README.md", "r") as fh:
long_description = fh.read()
# 'opencv-python >= 3.3.1'
REQUIRED_PACKAGES = [
]
DEPENDENCY_LINKS = [
]
setuptools.setup(
name='tbreader',
version=_VERSION,
description='Simple TensorBoard Log Parser',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=REQUIRED_PACKAGES,
dependency_links=DEPENDENCY_LINKS,
url='https://github.com/ildoonet/tbreader',
license='MIT License',
package_dir={},
packages=setuptools.find_packages(exclude=['tests']),
)