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

Source Code for Module gyropy.setup

 1   
 2  from distutils.core import setup, Extension 
 3   
 4  setup(name="gyropy", version="0.26.0", 
 5          description = "Master/slave python on a cluster & remote proxies for python objects.", 
 6          author = "Greg Kochanski", 
 7          author_email = "gpk@kochanski.org", 
 8          packages = ["gyropy" ], 
 9          package_dir = {'gyropy': '.'}, 
10          classifiers = ['Development Status :: 3 - Alpha', 
11                          'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 
12                          'Operating System :: POSIX', 
13                          'Operating System :: Microsoft :: Windows', 
14                          'Programming Language :: Python', 
15                          'Topic :: Software Development :: Libraries', 
16                          'Topic :: Software Development :: Libraries :: Python Modules', 
17                          'Topic :: Software Development :: Object Brokering', 
18                          'Topic :: System :: Clustering', 
19                          ] 
20          ) 
21