-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
64 lines (57 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/.env python
# -*- coding: utf-8 -*-
import io
import os
from pkg_resources import Requirement
from setuptools import find_packages, setup
# Package meta-data.
NAME = "yolov7"
DESCRIPTION = (
"A clean, modular implementation of the Yolov7 model family, which uses the official pretrained weights,",
"with utilities for training the model on custom (non-COCO) tasks.",
)
URL = "https://github.com/Chris-hughes10/Yolov7-training"
EMAIL = "[email protected]"
AUTHOR = "Chris Hughes and Bernat Puig Camps"
REQUIRES_PYTHON = ">=3.7.0"
VERSION = "0.1.0"
FILEPATH = os.path.abspath(os.path.dirname(__file__))
REQUIRED = []
EXAMPLES_REQUIRED = []
with open("requirements.txt", "r") as f:
for line in f.readlines():
try:
REQUIRED.append(str(Requirement.parse(line)))
except ValueError:
pass
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(FILEPATH, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = "\n" + f.read()
except FileNotFoundError:
LONG_DESCRIPTION = DESCRIPTION
# Where the magic happens:
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*", "test"]
),
scripts=[],
install_requires=REQUIRED,
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
],
)