1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: exclude definitions from setup.py installation
These YAML files are now going into a separate binary package and do not need
to come with the pybuild-generated packages.
Author: Sascha Steinbiss <satta@debian.org>
--- a/setup.py
+++ b/setup.py
@@ -125,9 +125,6 @@
],
packages=find_packages('.', exclude=[u'tests', u'tests.*', u'tools']),
package_dir={'artifacts': 'artifacts'},
- data_files=[
- ('share/artifacts', glob.glob(os.path.join('definitions', '*'))),
- ],
install_requires=[
'PyYAML >= 3.11',
],
|