-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (67 loc) · 1.56 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
[metadata]
name = flowfish
version = 1.0.2
description = Yet another pythonic workflow engine
url = https://github.com/exdatic/flowfish
author = André Kischkel
author_email = [email protected]
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
[options]
zip_safe = true
package_dir=
=.
packages=find:
include_package_data = true
python_requires = >=3.7
install_requires =
cloudpickle
filelock>2.0
graphviz>=0.6
loguru
murmurhash
simpleeval>=0.9.2
tqdm
tests_require =
pydantic
pytest
pytest-asyncio
uvloop
[options.entry_points]
console_scripts =
flow = flowfish.__main__:main
[options.package_data]
* = **/*.json, **/*.txt
[options.extras_require]
test =
flake8
pydantic
pytest
pytest-asyncio
uvloop
all =
uvloop
[tool:pytest]
testpaths = tests
norecursedirs = tests/test
filterwarnings =
ignore::DeprecationWarning
ignore::RuntimeWarning
ignore::pytest.PytestUnraisableExceptionWarning
[flake8]
max-line-length = 127