From aa81743ce718e3237409807dd8027477e26651bc Mon Sep 17 00:00:00 2001 From: Amritanshu Date: Tue, 20 Aug 2019 08:41:44 +0530 Subject: [PATCH] Make the build distributable --- .gitignore | 2 ++ MANIFEST.in | 3 ++- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) 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", ],