diff --git a/VERSION b/VERSION index 341cf11..7dff5b8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 \ No newline at end of file +0.2.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 7075660..185ae68 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ -from setuptools import setup +from setuptools import find_packages, setup setup( name='giftless', - packages=['giftless'], + packages=find_packages(exclude='./tests'), version=open('VERSION').read(), description='A Git LFS Server implementation in Python with support for pluggable backends', author='Shahar Evron', @@ -15,7 +15,9 @@ 'marshmallow-enum', 'pyyaml', 'PyJWT', - 'webargs' + 'webargs', + 'python-dotenv', + 'typing-extensions' ], package_data={} )