[fix] make this damn setup.py accept my static files.
@ -1 +1,3 @@
|
|||||||
include templates/* static/*
|
recursive-include templates *
|
||||||
|
recursive-include static *
|
||||||
|
include requirements.txt
|
||||||
|
0
prosopopee/__init__.py
Normal file
0
prosopopee → prosopopee/prosopopee.py
Executable file → Normal file
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
10
setup.py
@ -11,14 +11,16 @@ setup(name='prosopopee',
|
|||||||
author_email='cortex@worlddomination.be',
|
author_email='cortex@worlddomination.be',
|
||||||
url='https://github.com/Psycojoker/prosopopee',
|
url='https://github.com/Psycojoker/prosopopee',
|
||||||
install_requires=open("./requirements.txt", "r").read().split(),
|
install_requires=open("./requirements.txt", "r").read().split(),
|
||||||
packages=[],
|
packages=['prosopopee'],
|
||||||
py_modules=[],
|
py_modules=[],
|
||||||
license= 'GPLv3+',
|
license= 'GPLv3+',
|
||||||
scripts=['prosopopee'],
|
scripts=[],
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': ['prosopopee = prosopopee.prosopopee:main']
|
||||||
|
},
|
||||||
keywords='',
|
keywords='',
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
package_data={
|
package_data={
|
||||||
'static': ['*.css', '*.js'],
|
'prosopopee': ['static/css/*', 'static/js/*', 'static/img/*', 'templates/*.html', 'templates/sections/*'],
|
||||||
'templates': ['*.html'],
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|