Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
workflow
pypushflow
Commits
75ca14ab
Commit
75ca14ab
authored
Jul 29, 2021
by
Wout De Nolf
Browse files
update distribution management
parent
54087509
Changes
6
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
75ca14ab
...
...
@@ -4,16 +4,19 @@ A task scheduler for cyclic and acyclic graphs
## Install
:warning:
**The pypushflow on pypi is a diverged fork of the core project**
```
bash
python
-m
pip
install
pypushflow
```
Installation from source
```
python
```
bash
python
-m
pip
install
-e
.
```
## Run tests
```
python
```
bash
python
-m
pip
install
pypushflow[test]
pytest
```
pypushflow/__init__.py
View file @
75ca14ab
...
...
@@ -23,3 +23,4 @@ __authors__ = ["O. Svensson"]
__license__
=
"MIT"
__date__
=
"28/05/2019"
__version__
=
"0.3.0-alpha"
requirements-dev.txt
deleted
100644 → 0
View file @
54087509
pytest
\ No newline at end of file
requirements.txt
deleted
100644 → 0
View file @
54087509
setup.cfg
0 → 100644
View file @
75ca14ab
[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 =
Bug Tracker = https://gitlab.esrf.fr/workflow/pypushflow/-/issues
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
packages = find:
python_requires = >=3.6
install_requires =
[options.extras_require]
mongo =
pymongo
test =
pytest
dev =
%(test)s
setup.py
View file @
75ca14ab
from
setuptools
import
setup
,
find_package
s
import
setuptool
s
setup
(
name
=
"pypushflow"
,
description
=
"A task scheduler for cyclic and acyclic graphs"
,
packages
=
find_packages
(),
install_requires
=
[]
)
if
__name__
==
"__main__"
:
setuptools
.
setup
()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment