-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 783 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 783 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
# Copyright 2018 Christoph Heindl.
#
# Licensed under MIT License
# ============================================================
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='tfmpl',
version=open('tfmpl/__init__.py').readlines()[-1].split()[-1].strip('\''),
description='Seamlessly integrate matplotlib figures tensorflow summaries.',
author='Christoph Heindl',
url='https://github.com/cheind/tf-matplotlib',
license='MIT',
install_requires=required,
packages=['tfmpl', 'tfmpl.plots', 'tfmpl.samples', 'tfmpl.tests'],
include_package_data=True,
keywords='tensorflow matplotlib tensorboard'
)