Commit 0526c0ca authored by Yuxin Wu's avatar Yuxin Wu

add an initial setup.py

parent 41be1881
[metadata]
name = tensorpack
author = TensorPack contributors
author-email = ppwwyyxxc@gmail.com
summary = Neural Network Toolbox on TensorFlow
description-file = README.md
url = https://github.com/ppwwyyxx/tensorpack
license = Apache
[files]
packages =
tensorpack
[wheel]
universal = 1
from setuptools import setup
import sys
req = ['numpy',
'six',
'termcolor',
'tqdm>4.11.1',
'msgpack-python',
'msgpack-numpy',
'pyzmq'
]
if sys.version_info.major == 2:
req.extend(['subprocess32', 'functools32'])
setup(version='0.1',
install_requires=req,
zip_safe=False # dataset and __init__ use file
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment