Skip to content

Commit

Permalink
Merge pull request #25 from davidroeca/fix_setup_3
Browse files Browse the repository at this point in the history
add find_packages for cross-compatibility between python versions
  • Loading branch information
lmcgartland authored Nov 16, 2018
2 parents c3ca259 + 6c2d1a6 commit a2699fc
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Always prefer setuptools over distutils
from setuptools import setup
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
Expand Down Expand Up @@ -30,12 +30,8 @@

setup(
name='graphene_file_upload',
packages=[
'graphene_file_upload', # this must be the same as the name above
'graphene_file_upload.flask',
'graphene_file_upload.django',
],
version='1.2.0',
packages=find_packages(),
version='1.2.1',
description='Lib for adding file upload functionality to GraphQL mutations in Graphene Django and Flask-Graphql',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down

0 comments on commit a2699fc

Please sign in to comment.