Package animio :: Module info
[hide private]
[frames] | no frames]

Source Code for Module animio.info

 1  # -*- coding: utf-8 -*- 
 2  import os 
 3  import sys 
 4  import glob  
 5   
 6  #{ Configuration  
 7  # The configuration provided here is used by the template to learn more about  
 8  # your particular project. Additionally it is used during distribution 
 9   
10   
11  # the minimum version of MRV that you require to work properly - usually the  
12  # version you used during development, its worth testing older versions though to  
13  # be more compatible  
14  mrv_min_version = (1, 0, 0)             # ( major, minor, micro ) 
15   
16  # Information about the version of your tool 
17  #               major, minor, micro, releaselevel, serial 
18  version = (0,     2,     0,     'Preview',        0) 
19   
20  # the name of your tool or program 
21  project_name = "AnimIO" 
22   
23  # The name of the rootpackage/root-directory under which all other modules are  
24  # located 
25  root_package = "animio" 
26   
27  # Author Name 
28  author = "Martin Freitag & Sebastian Thiel" 
29   
30  # Authors Email 
31  author_email = 'not@provided.com' 
32   
33  # url of the project's main web presence 
34  url = 'http://gitorious.org/animio' 
35   
36  # A short description of your project 
37  description = 'Convenient Animation Export and Import' 
38   
39  # License Identification String 
40  license = "BSD License" 
41   
42  # Additional Keyword Arguments to be passed to distutils.core.setup 
43  # This should include the 'classifiers' keyword which is important to pipy 
44  setup_kwargs = dict() 
45   
46   
47  # paths to executables, relative to our project root 
48  regression_test_exec = 'ext/mrv/test/bin/tmrvr' 
49  nosetest_exec = 'ext/mrv/test/bin/tmrv' 
50  makedoc_exec = '../ext/mrv/doc/makedoc' 
51   
52  setup_kwargs = dict( 
53                                  package_data = {'animio.test' : ['fixtures', 'performance', 'ui']}, 
54                                  options = dict(build_py={       'exclude_from_compile' : ('*/maya/undo.py', '*/maya/nt/persistence.py'),  
55                                                                                          'exclude_items'                 : ('mrv.doc', 'mrv.test')} ) 
56                                  ) 
57   
58   
59  # Optionally taken into consideration by the DocGenerator implementation  
60  doc_config = dict( 
61                                  epydoc_show_source = 'yes',  
62                                  epydoc_modules = "modules: unittest\nmodules: ../",   
63                                  epydoc_exclude = "%s.test,%s.doc" % (root_package, root_package), 
64                                  ) 
65   
66  #} END configuration 
67