-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 679 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
from tfrecord_browser import __version__
setup(
name='tfrecord_browser',
url='https://github.com/terrykong/tfrecord-browser',
author='Terry Kong',
author_email='[email protected]',
scripts=['bin/tfrecord-browser'],
packages=find_packages(),
include_package_data=True,
# Shouldn't include tensorflow here
install_requires=["urwid", "urwidtrees"],
#setup_requires=["pytest-runner"],
#tests_require=["pytest"],
version=__version__,
#TODO(terry): add a license?
description='Read your tfrecord files from the command line',
long_description=open('README.md').read(),
)