summaryrefslogtreecommitdiff
blob: 5682c3344358ffe776b80ec0f6c768d6ffe085b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- portmidi/pm_python/setup.py
+++ portmidi/pm_python/setup.py
@@ -15,12 +15,10 @@
 
 
 DESCRIPTION = open('README_PYTHON.txt').read()
-CHANGES = open('CHANGES.txt').read()
-TODO = open('TODO.txt').read()
 
 EXTRAS = {}
 
-long_description = DESCRIPTION + CHANGES + TODO
+long_description = DESCRIPTION
 #import sys
 #if "checkdocs" in sys.argv:
 #    print long_description
@@ -173,7 +171,8 @@
     EXTENSION = dict(
         ext_modules=[ 
             Extension("pyportmidi._pyportmidi", [os.path.join("pyportmidi", "_pyportmidi.pyx")],
                       library_dirs=["./linux"],
+                      include_dirs=["../pm_common", "../porttime"],
                       libraries = ["portmidi", "asound", "pthread"]
                       )
         ]