Skip to content
Snippets Groups Projects
Select Git revision
  • a9103600ea598d035f225859a708951a59a727db
  • master default protected
  • updated_emam2middleware
  • patch-1
  • corrected_get_torcs_image
  • develop
  • multi_variant_model
7 results

CNNTrainer_Dpnet.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py.proto 1.37 KiB
    from distutils.core import setup, Extension
    
    module1 = Extension('va',
    					define_macros = [	( 'VA_PYTHON_VERSION_MAJOR', '@ITA_VAPYTHON_VERSION_MAJOR@' ),
    										( 'VA_PYTHON_VERSION_MINOR', '@ITA_VAPYTHON_VERSION_MINOR@' ),
    										( 'VABASE_STATIC', 1 ),
    										( 'VANET_STATIC', 1 ),
    										( 'VISTABASE_STATIC', 1 ),
    										( 'VISTAINTERPROCCOMM_STATIC', 1 ),
    										( 'VISTAASPECTS_STATIC',1 ) ],
                        include_dirs = [ '../VABase/include', '../VANet/include' ],
                        libraries = [ 'VABase', 'VANet', 'VistaBase', 'VistaAspects', 'VistaInterProcComm', 'winmm', 'ws2_32' ],
                        library_dirs = [ '../build_win32-x64.vc14/lib','../../ViSTA/build_win32-x64.vc14/lib' ],
    					sources = [ 'src/vasingleton.cpp' ] )
    
    setup ( name = 'va',
            version = '@ITA_VAPYTHON_VERSION_MAJOR@@ITA_VAPYTHON_VERSION_MINOR@',
            description = 'Virtual Acoustics (VA) singleton interface',
            author = 'Institute of Technical Acoustics (ITA), RWTH Aachen University',
            author_email = 'post@akustik.rwth-aachen.de',
            url = 'https://www.virtualacoustics.org',
            long_description = '''
    Virtual Acoustics (VA) is a real-time auralization framework for Virtual Reality. This module is an interface to interact with a VA server.
    ''',
    		license = "Copyright 2017. Apache License Version 2.0",
            ext_modules = [ module1 ]
    		)