[Subversion] / DecoratorTools / setup.py  

Diff of /DecoratorTools/setup.py

Parent Directory | Revision Log

version 2147, Thu May 25 01:53:52 2006 UTC version 2727, Fri Apr 3 23:33:46 2015 UTC
Line 7 
Line 7 
   
 # Metadata  # Metadata
 PACKAGE_NAME = "DecoratorTools"  PACKAGE_NAME = "DecoratorTools"
 PACKAGE_VERSION = "1.0"  PACKAGE_VERSION = "1.9"
 PACKAGES = ['peak', 'peak.util']  PACKAGES = ['peak', 'peak.util']
   
 def get_description():  def get_description():
     # Get our long description from the documentation      # Get our long description from the documentation
     f = file('README.txt')      f = open('README.txt')
     lines = []      lines = []
     for line in f:      for line in f:
         if not line.strip():          if not line.strip():
Line 27 
Line 27 
 setup(  setup(
     name=PACKAGE_NAME,      name=PACKAGE_NAME,
     version=PACKAGE_VERSION,      version=PACKAGE_VERSION,
     description="Use class and function decorators -- even in Python 2.3!",      description="Class, function, and metaclass decorators -- even in Python 2.3"
                   " (now with source debugging for generated code)!",
     long_description = get_description(),      long_description = get_description(),
   
     author="Phillip J. Eby",      author="Phillip J. Eby",
     author_email="peak@eby-sarna.com",      author_email="peak@eby-sarna.com",
     license="PSF or ZPL",      license="PSF or ZPL",
     url="http://peak.telecommunity.com/DevCenter/DecoratorTools",      url="http://cheeseshop.python.org/pypi/DecoratorTools",
     test_suite = 'test_decorators',      test_suite = 'test_decorators',
     packages = PACKAGES,      packages = PACKAGES,
     namespace_packages = PACKAGES,      namespace_packages = PACKAGES,


Generate output suitable for use with a patch program
Legend:
Removed from v.2147  
changed lines
  Added in v.2727

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help