加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
RangiLyu 提交于 2020-11-22 18:09 . add train code
#!/usr/bin/env python
from setuptools import find_packages, setup
__version__ = "0.0.1"
if __name__ == '__main__':
setup(
name='nanodet',
version=__version__,
description='Deep Learning Object Detection Toolbox',
url='https://github.com/RangiLyu/nanodet_develop',
author='RangiLyu',
author_email='lyuchqi@gmail.com',
keywords='deep learning',
packages=find_packages(exclude=('config', 'tools', 'demo')),
classifiers=[
'Development Status :: Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
license='Apache License 2.0',
zip_safe=False)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化