Make the build distributable

This commit is contained in:
Amritanshu 2019-08-20 08:41:44 +05:30
parent f41a0f4045
commit aa81743ce7
3 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View File

@ -7,3 +7,5 @@ env
*.egg-info/ *.egg-info/
DB/*.sql DB/*.sql
barker/static/ barker/static/
build/
dist/

View File

@ -1,2 +1,3 @@
include *.txt *.ini *.cfg *.rst 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

View File

@ -15,7 +15,7 @@ requires = [
'transaction', 'transaction',
'zope.sqlalchemy', 'zope.sqlalchemy',
'SQLAlchemy', 'SQLAlchemy',
'psycopg2', 'psycopg2-binary',
] ]
setup(name='barker', setup(name='barker',
@ -24,7 +24,7 @@ setup(name='barker',
long_description=README + '\n\n' + CHANGES, long_description=README + '\n\n' + CHANGES,
classifiers=[ classifiers=[
"Programming Language :: Python", "Programming Language :: Python",
"Framework :: Pylons", "Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
], ],