-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
99 lines (86 loc) · 2.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[metadata]
name = apolo-flow
version = attr: apolo_flow.__version__
description = Pipelines system for Apolo MLOps platform
url = https://github.com/neuro-inc/neuro-flow
long_description = file: README.md
long_description_content_type = text/markdown
author = Apolo Team
author_email = [email protected]
license = Apache 2
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: Information Technology
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development
Topic :: Utilities
License :: OSI Approved :: Apache Software License
[options]
package_dir=
=src
packages=find:
zip_safe=False
python_requires = >=3.9.0
include_package_data = True
install_requires =
apolo-cli>=24.10.1
pyyaml>=5.4
funcparserlib>=1.0.0
humanize>=4.10
apolo-extras>=24.10.0
graphviz>=0.20.3
yarl>=1.13
multidict>=5.0,<7.0
rich>=13.7.0
typing-extensions>=3.10
click>=8.0
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
apolo-flow=apolo_flow.cli:main
neuro-flow=apolo_flow.cli:main
apolo_api =
apolo-cli=apolo_flow.plugin:setup
[tool:pytest]
asyncio_mode = auto
[flake8]
exclude = .git,.env,__pycache__,.eggs
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203,F541,E704
[isort]
line_length=88
include_trailing_comma=True
multi_line_output=3
force_grid_wrap=0
combine_as_imports=True
lines_after_imports=2
known_standard_library=dataclasses
known_third_party=aiohttp,async_timeout,pytest
[mypy]
strict = True
pretty = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
[mypy-funcparserlib.*]
ignore_missing_imports = true
[mypy-graphviz]
ignore_missing_imports = true
[mypy-humanize]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
[mypy-apolo_extras]
ignore_missing_imports = true
[mypy-re_assert]
ignore_missing_imports = true