Skip to content

Commit

Permalink
Include pony.flask and pony.flask.example to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlovsky committed Jul 23, 2018
1 parent b89af3d commit 63af82b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include pony/orm/tests/queries.txt
include pony/orm/tests/queries.txt
include pony/flask/example/templates *.html
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@

packages = [
"pony",
"pony.flask",
"pony.flask.example",
"pony.orm",
"pony.orm.dbproviders",
"pony.orm.examples",
Expand All @@ -87,6 +89,11 @@
"pony.utils"
]

package_data = {
'pony.flask.example': ['templates/*.html'],
'pony.orm.tests': ['queries.txt']
}

download_url = "http://pypi.python.org/pypi/pony/"

if __name__ == "__main__":
Expand All @@ -108,5 +115,6 @@
url=url,
license=licence,
packages=packages,
package_data=package_data,
download_url=download_url
)

0 comments on commit 63af82b

Please sign in to comment.