Skip to content

Commit

Permalink
Distribuir carpeta examples/
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Oct 8, 2016
1 parent 673d649 commit 0ce4f4e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include CHANGES.rst README.md LICENSE.txt
include examples/*
exclude MANIFEST.in
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-

import sys
from glob import glob
from setuptools import setup, find_packages

sys.path.insert(0, 'bormeparser')
Expand Down Expand Up @@ -55,7 +56,10 @@ def get_install_requires():
'Programming Language :: Python :: 2',
],
license=__license__,
data_files=[('', ['LICENSE.txt'])],
data_files=[
('', ['LICENSE.txt']),
('examples', glob('examples/*'))
],
include_package_data=True,
zip_safe=False,
install_requires=get_install_requires(),
Expand Down

0 comments on commit 0ce4f4e

Please sign in to comment.