Skip to content

Commit

Permalink
[ADD] 초기 개발 환경 의존성 세팅
Browse files Browse the repository at this point in the history
- pipenv 를 통한 개발환경 및 의존성 세팅
  • Loading branch information
yeoV committed Aug 2, 2022
1 parent 8f6bf4b commit 90ee716
Show file tree
Hide file tree
Showing 3 changed files with 227 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
fastapi = "*"
uvicorn = "*"

[dev-packages]
black = "*"

[requires]
python_version = "3.10"
202 changes: 202 additions & 0 deletions Pipfile.lock

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

11 changes: 11 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-i https://pypi.org/simple
anyio==3.6.1; python_full_version >= '3.6.2'
click==8.1.3; python_version >= '3.7'
fastapi==0.79.0
h11==0.13.0; python_version >= '3.6'
idna==3.3; python_version >= '3.5'
pydantic==1.9.1; python_full_version >= '3.6.1'
sniffio==1.2.0; python_version >= '3.5'
starlette==0.19.1; python_version >= '3.6'
typing-extensions==4.3.0; python_version >= '3.7'
uvicorn==0.18.2

0 comments on commit 90ee716

Please sign in to comment.