Skip to content

6006 moving deps to setup #6014

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 2 additions & 28 deletions flowapi/Pipfile
Original file line number Diff line number Diff line change
@@ -1,32 +1,6 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pyzmq = "*"
quart = "*"
hypercorn = "*"
asyncpg = "*"
quart-jwt-extended = {extras = ["asymmetric-crypto"],version = "*"}
cryptography = "*" # This _should_ get installed given the flask-jwt-extended extra, but is getting put in the develop section of the lockfile
structlog = "*"
python-rapidjson = "*"
pyyaml = ">=5.1"
apispec = {extras = ["yaml"],version = "*"}
get-secret-or-env-var = "*"
prance = {extras = ["osv"],version = "<0.22.11.4.0"} # Pending https://github.com/RonnyPfannschmidt/prance/issues/145
openapi_spec_validator = "==0.5.5" # Pending https://github.com/RonnyPfannschmidt/prance/issues/145
werkzeug = "*"
flowapi = {editable = true, path='.'}

[dev-packages]
pytest = "*"
pytest-asyncio = "*"
"pytest-cov" = "*"
asynctest = "*"
black = {extras = ["jupyter"],version = "==23.1.0"}
flowkit-jwt-generator = {editable = true,path = "./../flowkit_jwt_generator", extras=["pytest"]}
flowapi = {editable = true, path = "."}
flowapi = {editable = true, extras=['test'], path = "."}

[requires]
python_version = "3.8"
15 changes: 13 additions & 2 deletions flowapi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"quart",
"pyzmq",
Expand All @@ -40,6 +40,17 @@
"prance[osv] < 0.22.11.5.0", # Pending https://github.com/RonnyPfannschmidt/prance/issues/145
"openapi_spec_validator ==0.4.0", # Pending https://github.com/RonnyPfannschmidt/prance/issues/145
"werkzeug",
"cryptography", # There was a prbolem with
],
extras_require={"test": ["pytest", "coverage"]},
extras_require={
"test": [
"pytest",
"coverage",
"pytest-asyncio",
"pytest-cov",
"asynctest",
"black[jupyter]==23.1.0",
"flowkit-jwt-generator @ ./../flowkit_jwt_generator",
]
},
)
12 changes: 2 additions & 10 deletions flowdb/Pipfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
psutil = "*"
flowdb = {editable = true, path = "."}

[dev-packages]
black = {extras = ["jupyter"],version = "==23.3.0"}

[requires]
python_version = "3.9"
flowdb = {editable = true, extras = ["test"], path = "."}
262 changes: 8 additions & 254 deletions flowdb/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions flowdb/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[aliases]
test=pytest

[versioneer]
VCS = git
style = pep440-pre
versionfile_source = flowmachine/_version.py
versionfile_build = flowmachine/_version.py
tag_prefix =
parentdir_prefix = FlowKit-

[tool:pytest]
python_files = tests/*/test_*.py tests/test_*.py
Loading