forked from RangiLyu/nanodet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 931 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
#!/usr/bin/env python
from setuptools import find_packages, setup
__version__ = "0.3.0"
if __name__ == '__main__':
setup(
name='nanodet',
version=__version__,
description='Deep Learning Object Detection Toolbox',
url='https://github.com/RangiLyu/nanodet',
author='RangiLyu',
author_email='[email protected]',
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)