Changeset 1162 in products for quintagroup.seoptimizer/trunk/setup.py


Ignore:
Timestamp:
Jul 25, 2009 12:45:38 PM (15 years ago)
Author:
liebster
Message:

Fix url action in qseo_properties_edit_form

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.seoptimizer/trunk/setup.py

    r728 r1162  
    66from setuptools import setup, find_packages 
    77 
    8 def read(*rnames): 
    9     return open(os.path.join(os.path.dirname(__file__), *rnames)).read() 
    10      
     8 
     9version = '2.0.7' 
     10 
    1111setup(name='quintagroup.seoptimizer', 
    12       version=read("quintagroup", "seoptimizer", "version.txt").strip(), 
     12      version=version, 
    1313      description="Quintagroup Search Engine Optimization Tool", 
    14       long_description=read("docs", "README.txt") + "\n" + \ 
    15                        read("docs", "INSTALL.txt") + "\n" + \ 
    16                        read("docs", "HISTORY.txt"), 
     14      long_description=open("README.txt").read() + "\n" + 
     15                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n" + 
     16                       open(os.path.join("docs", "HISTORY.txt")).read(), 
     17 
    1718      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 
    1819      classifiers=[ 
Note: See TracChangeset for help on using the changeset viewer.