Skip to content

Commit

Permalink
added examples and man page to distributed files
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Oct 21, 2016
1 parent c6c3175 commit 5f78fcd
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 +1,2 @@
include LICENSE
recursive-include examples *.sh *.py
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ def main():
# maintainer_email='martin@cloudflare.com',
url='https://github.com/cloudflare/python-cloudflare',
license='MIT',
packages=['cli4']+find_packages(),
packages=['cli4', 'examples']+find_packages(),
#package_dir={'CloudFlare': 'lib'}
#package_dir={'CloudFlare/examples': 'examples'},
#package_data={'cloudflare-examples': ["examples/*"]},
include_package_data=True,
data_files = [('man/man1', ['cli4/cli4.man'])],
install_requires=['requests', 'logger', 'future', 'pyyaml'],
keywords='cloudflare',
entry_points={
Expand Down

0 comments on commit 5f78fcd

Please sign in to comment.