-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (54 loc) · 1.44 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
[flake8]
max-line-length = 100
exclude =
.git,
__pycache__,
venv,
.venv,
.tox,
build/,
dist/,
env,
docs/build/
viash/__version__
select = C,E,F,W,B,B950
extend-ignore = E203, E501, W503
[metadata]
name = viashpy
author = Dries Schaumont
author_email = [email protected]
maintainer = Dries Schaumont
maintainer_email = [email protected]
description = A plugin with various tools and utilities to interact with viash using python.
; project_urls =
; Changelog =
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Operating System :: OS Independent
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
python_requires = >=3.8
setup_requires =
setuptools-scm
setuptools_scm_git_archive
install_requires =
pytest >= 6.2
PyYAML ~= 6.0
[options.extras_require]
dev = tox
[options.entry_points]
pytest11 =
viashpy = viashpy.testing