-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: hammadkhan373 <[email protected]>
- Loading branch information
hammadkhan373
committed
Aug 8, 2022
1 parent
651b0fe
commit 185fc5d
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from python:3.8-alpine | ||
from python:3.9-alpine | ||
|
||
ADD . /tmp/py-service-wrapper | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.8-alpine | ||
FROM python:3.9-alpine | ||
|
||
ARG PYWEBWRAPPER_FRAMEWORK | ||
ARG PROJECT_DIST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
requirements = ["fastapi==0.62.0", "uvicorn==0.13.1", "pyyaml==5.3.1"] | ||
requirements = ["fastapi==0.79.0", "uvicorn==0.18.2", "pyyaml==6.0"] | ||
|
||
test_requirements = ["pytest==4.6.3", "pytest-cov==2.7.1"] | ||
test_requirements = ["pytest==7.1.2", "pytest-cov==3.0.0"] | ||
|
||
|
||
setup( | ||
description="Wraps python projects and serves them over HTTPs", | ||
license="BSD license", | ||
include_package_data=True, | ||
keywords="fhir, resources, python, hl7, health IT, healthcare", | ||
name="py-web-wrapper", | ||
name="py-service-wrapper", | ||
packages=find_packages(".", exclude=["*tests*"]), | ||
install_requires=requirements, | ||
tests_require=test_requirements + requirements, | ||
url="https://github.ibm.com/ebaron/dicom-fhir-converter", | ||
url="https://github.com/LinuxForHealth/py-service-wrapper", | ||
version="0.0.1", | ||
python_requires=">=3.6", | ||
) |