Skip to content

Commit

Permalink
Install data files with package
Browse files Browse the repository at this point in the history
  • Loading branch information
simark committed May 10, 2015
1 parent 809c788 commit 7040b01
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
graft biciklo/static
graft biciklo/templates
24 changes: 13 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
from setuptools import setup, find_packages
from setuptools import setup

setup(
name = 'Biciklo',
version = '1.0',
packages = find_packages(),
entry_points = {
'console_scripts': ['biciklo-inventaire=biciklo.biciklo:main'],
},
install_requires = [
'pymongo',
'flask',
]
name='Biciklo',
version='1.0',
packages=['biciklo'],
entry_points={
'console_scripts': ['biciklo-inventaire=biciklo.biciklo:main'],
},
install_requires=[
'pymongo',
'flask',
],
zip_safe=False,
include_package_data=True,
)

0 comments on commit 7040b01

Please sign in to comment.