2 Star 0 Fork 0

Messier / pytorch-jacinto-ai-devkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 3.41 KB
一键复制 编辑 原始数据 按行查看 历史
#################################################################################
# Copyright (c) 2018-2021, Texas Instruments Incorporated - http://www.ti.com
# All Rights Reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#################################################################################
import os
import subprocess
import setuptools
def git_hash():
if os.path.exists('.git'):
hash = subprocess.check_output(['git', 'rev-parse', 'HEAD']).strip()
return hash[:7] if (hash is not None) else None
else:
return None
#
def get_version():
from version import __version__
hash = git_hash()
version_str = __version__ + '+' + hash.strip().decode('ascii') if (hash is not None) else __version__
return version_str
if __name__ == '__main__':
version_str = get_version()
long_description = ''
with open('README.md') as readme:
long_description = readme.read()
setuptools.setup(
name = 'pytorch-jacinto-ai',
version = get_version(),
description = 'Jacinto AI DevKit (PyTorch Version)',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'http://git.ti.com/jacinto-ai/pytorch-jacinto-ai',
author = 'Jacinto AI DevKit Team',
author_email = 'jacinto-ai-devkit@list.ti.com',
classifiers = [
'Development Status :: 4 - Beta'
'Programming Language :: Pyuthon :: 3.7'
],
keywords = 'artifical intelligence, deep learning, image classification, object detection, semantic segmentation, quantization',
#packages=[setuptools.find_packages(exclude=[])] #do not have sub packages
python_requires = '>=3.7',
install_requires = [],
package_dir = {'':'modules'},
package_data = {'':['*.txt']},
project_urls = {
'Source': 'http://git.ti.com/jacinto-ai/pytorch-jacinto-ai',
'Bug Reports': 'http://e2e.ti.com/search?q=J7&category=forum',
},
)
1
https://gitee.com/messier201/pytorch-jacinto-ai-devkit.git
git@gitee.com:messier201/pytorch-jacinto-ai-devkit.git
messier201
pytorch-jacinto-ai-devkit
pytorch-jacinto-ai-devkit
master

搜索帮助