Skip to content

Commit 67e37f5

Browse files
update setup.py
1 parent 5618ff3 commit 67e37f5

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.iml
33
__pycache__
44
/*.html
5+
/build

index_generator/models/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
setup(
55
name=PACKAGE_NAME,
66
version=APP_VERSION,
7-
packages=['index_generator'],
7+
packages=[
8+
'index_generator',
9+
'index_generator.models'
10+
],
11+
package_data={
12+
'index_generator': ['templates/*/*']
13+
},
14+
include_package_data=True,
815
url='https://github.com/BruceZhang1993',
916
license='MIT',
1017
author='Bruce Zhang, Edward P',

0 commit comments

Comments
 (0)