Changeset 393

Show
Ignore:
Timestamp:
09/11/08 15:26:17 (4 months ago)
Author:
johnbywater
Message:

Added external dist folder.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk

    • Property svn:externals set to
      dist http://project.kforge.appropriatesoftware.net/foundation/svn/product/domainmodel
  • trunk/bin/domainmodel-sdist-maker

    r388 r393  
    2323os.system("python setup.py sdist") 
    2424 
    25 # Copy distribution to download location. 
     25print "Copying distribution to download location..." 
    2626import sys 
    2727sys.path.append('./src') 
     
    3131os.system(cmd) 
    3232 
     33print "Committing release product..." 
     34cmd = "svn add dist dist/domainmodel-%s.tar.gz" % __version__ 
     35print cmd 
     36if os.system(cmd): 
     37    sys.exit(1) 
     38cmd = "svn ci dist/domainmodel-%s.tar.gz -m\"Created new distribution for domainmodel %s\"" % (__version__, __version__) 
     39print cmd 
     40if os.system(cmd): 
     41    sys.exit(1) 
     42 
    3343 
    3444# Further manual steps.  
    35 print "Test distribution with foundation system tests." 
    3645print "Update domainmodel website to state and point to new release." 
    3746print "Update cheeseshop." 
  • trunk/setup.py

    r389 r393  
    2626 
    2727    # metadata for upload to PyPI 
    28     author = 'Open Knowledge Foundation and Appropriate Software Foundation', 
     28    author = 'Appropriate Software Foundation, Open Knowledge Foundation', 
    2929    author_email = 'kforge-dev@lists.okfn.org', 
    3030    license = 'GPL', 
    31     url = 'http://appropriatesoftware.net/domainmodel/', 
     31    url = 'http://appropriatesoftware.net/domainmodel/Home.html', 
    3232    download_url = 'http://appropriatesoftware.net/provide/docs/domainmodel-%s.tar.gz' % __version__, 
    3333    description = 'Toolkit for enterprise application frameworks.', 
     
    3737""", 
    3838    classifiers = [ 
    39         'Development Status :: 4 - Beta', 
     39        'Development Status :: 5 - Production/Stable', 
    4040        'Environment :: Console', 
    4141        'Environment :: Web Environment',