aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in1
-rw-r--r--setup.py7
2 files changed, 7 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..d1abc65
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include libvt100/src/*.h
diff --git a/setup.py b/setup.py
index 09d31ba..169c58c 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,12 @@ setup(
sources=[
"vt100module.c",
"libvt100/src/screen.c",
- "libvt100/src/parser.c"
+ "libvt100/src/parser.c",
+ ],
+ depends=[
+ "libvt100/src/screen.h",
+ "libvt100/src/parser.h",
+ "libvt100/src/vt100.h",
],
**pkgconfig('glib-2.0')
)