diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..1a2a2ae --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include src/files/static * \ No newline at end of file diff --git a/setup.py b/setup.py index 8e0b6e5..58dc6cc 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,15 @@ setup( name = 'ftg', packages = find_packages(), - version = '0.8', + version = '0.9', license='MIT', description = 'A generator for a flask app template', author = 'Nicholas Ong Wei Harn', author_email = 'nicholasowh@hotmail.com', url = 'https://github.com/qaqaqaqaowh/ftg', - download_url = 'https://github.com/qaqaqaqaowh/ftg/archive/0.8.tar.gz', + download_url = 'https://github.com/qaqaqaqaowh/ftg/archive/0.9.tar.gz', keywords = ['flask', 'template', 'generate'], + include_package_data = True, install_requires=[ 'flask', 'peewee',