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
|
[metadata]
name = pypushflow
version = attr: pypushflow.__version__
author = ESRF
author_email = svensson@esrf.fr
description = A task scheduler for cyclic and acyclic graphs
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://gitlab.esrf.fr/workflow/pypushflow/
project_urls =
Source = https://gitlab.esrf.fr/workflow/pypushflow/
Documentation = https://pypushflow.readthedocs.io/
Tracker = https://gitlab.esrf.fr/workflow/pypushflow/issues/
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
package_dir=
=src
packages=find:
python_requires = >=3.6
install_requires =
[options.packages.find]
where=src
[options.extras_require]
mx =
pymongo >=3
test =
pytest >=7
pytest-subtests >=0.4
psutil >=5.8
mongita >=1
mongomock
mongomock <4.2.0; python_version<"3.8"
numpy
dev =
%(test)s
black >=22
flake8 >=4
doc =
%(test)s
sphinx >=4.5
sphinx-autodoc-typehints >=1.16
pydata-sphinx-theme < 0.15
# E501 (line too long) ignored for now
# E203 and W503 incompatible with black formatting (https://black.readthedocs.io/en/stable/compatible_configs.html#flake8)
[flake8]
ignore = E501, E203, W503
max-line-length = 88
exclude =
.eggs
[coverage:run]
omit =
setup.py
*/tests/*
|