forked from RangiLyu/nanodet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 937 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
#!/usr/bin/env python
from setuptools import find_packages, setup
__version__ = "0.4.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,
)