diff --git a/.gitignore b/.gitignore index bc53436..23276be 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ env *.egg-info/ DB/*.sql barker/static/ +build/ +dist/ diff --git a/MANIFEST.in b/MANIFEST.in index 1be8248..0e9ddc7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include *.txt *.ini *.cfg *.rst -recursive-include barker +recursive-include barker/static *.ico *.png *.css *.gif *.jpg *.txt *.js *.html *.map *.eot *.svg *.ttf *.woff + diff --git a/setup.py b/setup.py index ffe781d..2f25063 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ requires = [ 'transaction', 'zope.sqlalchemy', 'SQLAlchemy', - 'psycopg2', + 'psycopg2-binary', ] setup(name='barker', @@ -24,7 +24,7 @@ setup(name='barker', long_description=README + '\n\n' + CHANGES, classifiers=[ "Programming Language :: Python", - "Framework :: Pylons", + "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ],