Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Better package finding that covers subpackages
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
setup.py
|
@@ -36,7 +36,7 @@ |
|
|
package_name = "fabric2" |
|
|
binary_name = "fab2" |
|
|
packages = setuptools.find_packages( |
|
|
include=[package_name, "{}.*".format(package_name)], |
|
|
include=[package_name, "{}.*".format(package_name)] |
|
|
) |
|
|
|
|
|
# Version info -- read without importing |
|
|