Skip to content

Commit

Permalink
add initial source
Browse files Browse the repository at this point in the history
  • Loading branch information
h3xxx committed Feb 14, 2024
1 parent 3bba79b commit 4dd05c4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from setuptools import setup, find_packages

setup(
name="fastapi-qodana-docker",
version="0.1",
packages=find_packages(),
install_requires=[
"fastapi==0.109.2",
"uvicorn[standard]==0.27.1"
],
extras_require={
"dev": [
"pylint==3.0.3",
"pytest==8.0.0",
"httpx==0.26.0",
]
}
)

0 comments on commit 4dd05c4

Please sign in to comment.