forked from yfpeng/object_detection_metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (61 loc) · 1.73 KB
/
setup.cfg
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
65
66
67
[metadata]
name = object-detection-metrics
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
version = 0.4.post1
# Author details
author = Yifan Peng
author_email = [email protected]
description = Object Detection Metrics
long_description = file: README.md
long_description_content_type = text/markdown
# The project's main homepage.
url = https://github.com/yfpeng/object_detection_metrics
license = MIT License
keywords = object detection metrics
# See https://pypi.org/classifiers/
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS
Topic :: Text Processing
Topic :: Software Development
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires = >=3.7
package_dir=
=src
packages = find:
install_requires =
matplotlib
numpy
pycocotools
scikit-image
tqdm
Pillow
pandas
docopt
[options.packages.find]
where=src
exclude =
tests.*
tests
deprecated/*
[options.package_data]
* =
resources/*
[options.extras_require]
rest = docutils>=0.15.2
[tool:pytest]
norecursedirs=tests/helpers
[options.entry_points]
console_scripts =
pascal2coco = podm.pascal2coco:main