forked from platypush/platypush
Fixed paths for Alembic's package_data
.
This commit is contained in:
parent
6b28d16ccf
commit
12cca4991a
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -39,7 +39,11 @@ setup(
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
package_data={
|
package_data={
|
||||||
'platypush': ['alembic.ini', 'alembic/*', 'alembic/**/*'],
|
'platypush': [
|
||||||
|
'migrations/alembic.ini',
|
||||||
|
'migrations/alembic/*',
|
||||||
|
'migrations/alembic/**/*',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
Loading…
Reference in a new issue