forked from XiongDa0001/yolov7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.47 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import subprocess
import time
from setuptools import find_packages, setup
import io
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, "readme.md"), encoding="utf-8") as f:
long_description = f.read()
version_file = "yolov7/version.py"
def get_version():
with open(version_file, "r") as f:
exec(compile(f.read(), version_file, "exec"))
return locals()["__version__"]
if __name__ == "__main__":
setup(
name="yolov7",
version=get_version(),
description="YOLOv7 is a high-level training framework based on detectron2",
long_description="",
author="LucasJin",
author_email="jinfagang19@163.com",
keywords="computer vision, object detection",
url="https://github.com/jinfagang/yolov7",
packages=find_packages(exclude=("configs", "tools", "demo", "images")),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
license="Apache License 2.0",
zip_safe=False,
)