tried adding flag to fix setup
Browse files
setup.py
CHANGED
|
@@ -20,11 +20,12 @@ setup(
|
|
| 20 |
long_description=long_description,
|
| 21 |
long_description_content_type="text/markdown",
|
| 22 |
url="https://github.com/andreped/livermask",
|
|
|
|
| 23 |
packages=find_packages(
|
| 24 |
include=[
|
| 25 |
'livermask',
|
| 26 |
'livermask.utils',
|
| 27 |
-
'livermask.configs'
|
| 28 |
]
|
| 29 |
),
|
| 30 |
entry_points={
|
|
|
|
| 20 |
long_description=long_description,
|
| 21 |
long_description_content_type="text/markdown",
|
| 22 |
url="https://github.com/andreped/livermask",
|
| 23 |
+
include_package_data=True,
|
| 24 |
packages=find_packages(
|
| 25 |
include=[
|
| 26 |
'livermask',
|
| 27 |
'livermask.utils',
|
| 28 |
+
'livermask.configs',
|
| 29 |
]
|
| 30 |
),
|
| 31 |
entry_points={
|