-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
64 lines (59 loc) · 1.54 KB
/
setup.cfg
File metadata and controls
64 lines (59 loc) · 1.54 KB
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
[metadata]
name = coco2customvision
version = 0.0.1
description = Tool to backup custom vision projects to COCO files and vise versa
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = RnD Azure Script
maintainer_email = rndazurescript@users.noreply.github.com
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Environment :: Console
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: System :: Archiving :: Backup
home_page = https://github.com/rndazurescript/Coco2CustomVision
keywords =
custom-vision
coco
blob-storage
backup
azure
readme = README.md
repository = https://github.com/rndazurescript/Coco2CustomVision
[options]
packages = find:
install_requires =
azure-cognitiveservices-vision-customvision>=3
azure.storage.blob>=12
click>=8
tqdm>=4
python_requires = >=3.6
package_dir =
= src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
coco2customvision = coco2customvision:cli
[options.extras_require]
dev =
black
flake8
pytest
pytest-env
setup-cfg-fmt
setuptools_scm
[flake8]
max-line-length = 120
max-complexity = 10
ignore =
E203 # [psf/black#280](https://github.com/psf/black/issues/280)
W503 # https://github.com/psf/black/issues/52