-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
32 lines (30 loc) · 877 Bytes
/
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
[metadata]
name = image-augmentation-ml
version = 0.0.1
author = Ryan Singman
author_email = [email protected]
description = Finding the optimal set of iamge augmentations for image classification
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ryansingman/image-augmentation-ml
project_urls =
Issue Tracker = https://github.com/ryansingman/image-augmentation-ml/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.8
install_requires =
pyyaml >= 5.4.1
opencv-python >= 4.5.1.48
tqdm >= 4.51.0
keras >= 2.4.3
tensorflow >= 2.4.1
plotly >= 4.14.3
pandas >= 1.2.2
[flake8]
max-line-length = 100
per-file-ignores = __init__.py:F401
ignore = E203, W503