Skip to content

Commit 6b2df1f

Browse files
committed
including package setup
1 parent 726d273 commit 6b2df1f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='fastapi_elasticsearch_middleware',
5+
version='0.1.0',
6+
url='https://github.com/GGontijo/fastapi-elasticsearch-middleware.git',
7+
description='Elasticsearch Logger Middleware for FastAPI',
8+
author='Gabriel Gontijo',
9+
author_email='gabrieldercilio08@gmail.com',
10+
packages=find_packages(),
11+
install_requires=[
12+
'fastapi',
13+
'elasticsearch'
14+
],
15+
)

0 commit comments

Comments
 (0)