forked from RangiLyu/nanodet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 941 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
from nanodet import __author__, __author_email__, __docs__, __homepage__, __version__
if __name__ == "__main__":
setup(
name="nanodet",
version=__version__,
description=__docs__,
url=__homepage__,
author=__author__,
author_email=__author_email__,
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,
)