Skip to content

Commit 71d2143

Browse files
committed
Added package_data to make unity accessible when not installed for development
1 parent 8efd0ed commit 71d2143

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
from distutils.core import setup
33

44
setup(name='cgull',
5-
version='0.1.0',
5+
version='0.1.1',
66
description='Embedded code testing utility',
77
author='Louis Simons',
88
author_email='lousimons@gmail.com',
99
packages=['cgull'],
10+
package_data={'cgull': ['unity/*']},
11+
include_package_data=True,
1012
entry_points={
1113
'console_scripts': ['cgull=cgull.cgull:main']
1214
},

0 commit comments

Comments
 (0)