Package nflgame :: Module setup
[frames] | no frames]

Source Code for Module nflgame.setup

 1  import os 
 2  import os.path 
 3  import sys 
 4   
 5  from distutils import sysconfig 
 6  from distutils.core import setup 
 7   
 8  setup( 
 9      name = 'nflgame', 
10      author = 'Andrew Gallant', 
11      author_email = 'andrew@burntsushi.net', 
12      version = '1.0.0', 
13      license = 'WTFPL', 
14      description = 'An API to retrieve and read NFL Game Center JSON data.', 
15      long_description = 'See README', 
16      url = 'https://github.com/BurntSushi/nflgame', 
17      platforms = 'ANY', 
18      packages = ['nflgame'], 
19      package_dir = {'nflgame': '.'}, 
20      package_data = {'nflgame': ['gamecenter-json/*.json']}, 
21      data_files = [('share/doc/pytyle3', ['README', 'COPYING', 'INSTALL'])], 
22      scripts = [] 
23  ) 
24