forked from vahidk/tfrecord
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (26 loc) · 869 Bytes
/
setup.py
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
import os
import sys
from distutils.core import setup
from setuptools import find_packages
# List of runtime dependencies required by this built package
install_requires = []
if sys.version_info <= (2, 7):
install_requires += ['future', 'typing']
install_requires += ['numpy', 'protobuf', 'crc32c']
# read the contents of README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='tfrecord',
version='1.14.1',
description='TFRecord reader',
long_description=long_description,
long_description_content_type='text/markdown',
author='Vahid Kazemi',
author_email='vkazemi@gmail.com',
url='https://github.com/vahidk/tfrecord',
packages=find_packages(),
license='MIT',
install_requires=install_requires
)