Skip to content

Commit

Permalink
Use find_packages so that the migrations sub-package of canvas_oaut…
Browse files Browse the repository at this point in the history
…h isn't excluded. Remove inclusion of non-existent `static` subfolder from MANIFEST.in. Minor version bump.
  • Loading branch information
bermudezjd committed Apr 29, 2016
1 parent 89a9c3e commit 6c1130a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include LICENSE
include README.rst
recursive-include canvas_oauth/static *
recursive-include canvas_oauth/templates *
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from setuptools import setup
from setuptools import (find_packages, setup)

with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as v_file:
version = v_file.read().strip()
Expand All @@ -13,7 +13,7 @@
setup(
name='canvas-oauth',
version=version,
packages=['canvas_oauth'],
packages=find_packages(),
include_package_data=True,
license="License :: OSI Approved :: MIT License",
description='A reusable Django app used to handle OAuth2 flow with Canvas.',
Expand Down

0 comments on commit 6c1130a

Please sign in to comment.