Skip to content

Commit

Permalink
Merge pull request #57 from datopian/fix/53-pypi-missing-subpackages
Browse files Browse the repository at this point in the history
Fix packaging issue: subpackages missing from pypi package
  • Loading branch information
Shahar Evron authored Nov 22, 2020
2 parents bf2b5eb + 38d87c5 commit 466df8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand All @@ -15,7 +15,9 @@
'marshmallow-enum',
'pyyaml',
'PyJWT',
'webargs'
'webargs',
'python-dotenv',
'typing-extensions'
],
package_data={}
)

0 comments on commit 466df8c

Please sign in to comment.