-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.cfg
More file actions
73 lines (63 loc) · 1.63 KB
/
setup.cfg
File metadata and controls
73 lines (63 loc) · 1.63 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
65
66
67
68
69
70
71
72
73
[metadata]
name = pid_reader
description = PID reader
long_description = file: README.md
long_description_content_type = text/markdown
keywords = Computer Vision, AI
maintainer = jgaz@equinor.com
author = Jesus Gazol
author_email = jgaz@equinor.com
maintainer-email = jgaz@equinor.com
url = https://github.com/equinor/pid_reader
project_urls =
Source=https://github.com/equinor/pid_reader
Tracker=https://github.com/equinor/pid_reader
platforms = any
use_scm_version = True
license = GPL 3
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Topic :: Software Development :: Libraries
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
python_requires = >=3.7
install_requires =
pandas > 1.0.0
tensorflow-gpu>=2.2.0
jupyter
azureml-sdk[notebooks]
azure-storage-blob
pyyaml
efficientnet
Pillow >= 7.0.0
fa2
pyyaml
setup_requires =
setuptools_scm
[options.packages.find]
where = src
[options.extras_require]
# This labels can be targeted by TOX (extras) to install in the different venvs
testing =
pytest == 5.3.5
pytest-cov
dev =
pre-commit >= 2.1.1
docs =
sphinx >= 2.0.0, < 3
towncrier >= 18.5.0
pygments-github-lexers >= 0.0.5
sphinxcontrib-autoprogram >= 0.1.5
[bdist_wheel]
universal = 1
[flake8]
ignore = E203, E266, E501, W503, F403, F401, E231
max-line-length = 99
max-complexity = 22