diff --git a/.gitignore b/.gitignore index 9fc9e4a01..ec315860f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,6 @@ tmp panoramix_config.py local_config.py env +dist +panoramix.egg-info/ app.db diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..2bd695e5d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include panoramix/templates * +recursive-include panoramix/static * diff --git a/setup.py b/setup.py index c31e0afe9..ee30c5344 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.2' +version = '0.2.1' setup( name='panoramix',