Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #11 from pyropy/#9-add-missing-dependencies
Browse files Browse the repository at this point in the history
#9 add missing dependencies
  • Loading branch information
pyropy authored Dec 1, 2020
2 parents 967060b + 9cb8031 commit 3d1cc87
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 78 deletions.
22 changes: 11 additions & 11 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ jedi = "*"
neovim = "*"

[packages]
fastapi = "==0.61.1"
netifaces = "==0.10.6"
pydantic = "==1.6.1"
starlette = "==0.13.6"
python-socketio = "==4.6.0"
fastapi = ">=0.61.1"
netifaces = ">=0.10.6"
pydantic = ">=1.6.1"
starlette = ">=0.13.6"
python-socketio = ">=4.6.0"
python-engineio = "*"

[test]
pytest = "==6.0.1"
fastapi = "==0.61.1"
netifaces = "==0.10.6"
pydantic = "==1.6.1"
starlette = "==0.13.6"
python-socketio = "==4.6.0"
pytest = ">=6.0.1"
fastapi = ">=0.61.1"
netifaces = ">=0.10.6"
pydantic = ">=1.6.1"
starlette = ">=0.13.6"
python-socketio = ">=4.6.0"
python-engineio = "*"


Expand Down
141 changes: 75 additions & 66 deletions Pipfile.lock

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

10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,15 @@ def get_long_description():
license="Apache License, Version 2.0",
version=VERSION,
packages=["fastapi_socketio"],
install_requires=[],
install_requires=[
"fastapi>=0.61.1",
"netifaces>=0.10.6",
"pydantic>=1.6.1",
"starlette>=0.13.6",
"python-socketio>=4.6.0",
"python-engineio",

],
extras_require={"test": ["pytest"]},
tests_require=["fastapi-socketio[test]"],
)

0 comments on commit 3d1cc87

Please sign in to comment.