Make the build distributable
This commit is contained in:
parent
f41a0f4045
commit
aa81743ce7
2
.gitignore
vendored
2
.gitignore
vendored
@ -7,3 +7,5 @@ env
|
|||||||
*.egg-info/
|
*.egg-info/
|
||||||
DB/*.sql
|
DB/*.sql
|
||||||
barker/static/
|
barker/static/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
4
setup.py
4
setup.py
@ -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",
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user