Skip to content

Commit

Permalink
recursively include the top-level data directory
Browse files Browse the repository at this point in the history
  • Loading branch information
svaksha committed Sep 13, 2013
1 parent c93da36 commit 1519c13
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ include LICENSE.rst
include MANIFEST.in
include README.rst
include requirements.txt
+recursive-include docs *
+recursive-include docs *
+recursive-include images *
26 changes: 15 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,33 @@ def read():
with open('README.rst') as f:
return f.readfile()

setup(name='chaya',
setup(name = 'chaya',
version = chaya.__version__,
author = 'SVAKSHA',
author_email = 'svaksha@gmail.com',
url = 'https://github.com/svaksha/chaya',
description ='Learn computer vision, edge detection',
long_description = open('README.rst').read()
packages = ['chaya'],
package_data = {'chaya': ['LICENSE.rst']},
package_data = {'chaya': ['LICENSE.rst',
'AUTHORS.rst',
'MANIFEST.in',
'README.rst',
]},
include_package_data = True,
install_requires = ['Cython==0.19.1',
'Pillow==2.1.0',
'distribute==0.6.34',
'numpy==1.7.1',
],
classifiers=[
'Development Status :: 13.08 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: AGPLv3 License',
'Programming Language :: Python :: 3.3',
'Topic :: Graphics :: Computer Vision',
],
packages=['chaya', 'chaya.tests'], #TODO
classifiers = ['Development Status :: 13.08 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: AGPLv3 License',
'Programming Language :: Python :: 3.3',
'Topic :: Graphics :: Computer Vision',
],
packages = ['chaya',
'chaya.tests',
], #TODO
)


0 comments on commit 1519c13

Please sign in to comment.