Mercurial > odfcast
comparison setup.py @ 13:75d90af41dfa
Exclude example data from being packaged in setup.py
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 26 Sep 2014 20:17:33 +0200 |
parents | 55581932e7f9 |
children | 8a3f3427aa15 |
comparison
equal
deleted
inserted
replaced
12:195306a622e0 | 13:75d90af41dfa |
---|---|
21 keywords='OpenOffice PDF', | 21 keywords='OpenOffice PDF', |
22 author='Björn Ricks', | 22 author='Björn Ricks', |
23 author_email='bjoern.ricks@intevation.de', | 23 author_email='bjoern.ricks@intevation.de', |
24 url='', | 24 url='', |
25 license='', | 25 license='', |
26 packages=find_packages(exclude=[]), | 26 packages=find_packages(exclude=["examples"]), |
27 include_package_data=True, | 27 include_package_data=True, |
28 zip_safe=True, | 28 zip_safe=True, |
29 install_requires=read("requirements.txt").split(), | 29 install_requires=read("requirements.txt").split(), |
30 ], | 30 ], |
31 ) | 31 ) |