File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1+ import  glob 
12from  setuptools  import  setup , Extension 
23
34_quickjs  =  Extension ('_quickjs' ,
45                     define_macros = [('CONFIG_VERSION' , '"2019-07-09"' )],
5-                      sources = [
6-                          'module.c' , 'third-party/quickjs.c' , 'third-party/cutils.c' ,
7-                          'third-party/libregexp.c' , 'third-party/libunicode.c' 
8-                      ])
6+                      sources = ['module.c' ] +  glob .glob ("third-party/*.c" ),
7+                      headers = glob .glob ("third-party/*.h" ))
98
109long_description  =  """ 
1110Thin Python wrapper around https://bellard.org/quickjs/ . 
1514      author_email = "petter.strandmark@gmail.com" ,
1615      name = 'quickjs' ,
1716      url = 'https://github.com/PetterS/quickjs' ,
18-       version = '1.0.7 ' ,
17+       version = '1.0.8 ' ,
1918      description = 'Wrapping the quickjs C library.' ,
2019      long_description = long_description ,
2120      packages = ["quickjs" ],
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments