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
acc484ca
Commit
acc484ca
authored
Mar 08, 2021
by
Wout De Nolf
Browse files
Specify requirements
parent
eb17d0f6
Changes
4
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
acc484ca
...
...
@@ -4,8 +4,16 @@ A task scheduler for cyclic and acyclic graphs
## Install
### From source
:warning:
**The pypushflow in pypi is a diverged fork of the core project**
Installation from source
```
python
python
-
m
pip
install
-
e
.
```
## Run tests
```
python
pytest
```
\ No newline at end of file
requirements-dev.txt
0 → 100644
View file @
acc484ca
pytest
\ No newline at end of file
requirements.txt
View file @
acc484ca
pymongo
\ No newline at end of file
pymongo
bson
\ No newline at end of file
setup.py
View file @
acc484ca
...
...
@@ -4,5 +4,5 @@ setup(
name
=
"pypushflow"
,
description
=
"A task scheduler for cyclic and acyclic graphs"
,
packages
=
find_packages
(),
install_requires
=
[
"pymongo"
]
install_requires
=
[
"pymongo"
,
"bson"
]
)
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