Changeset 222:223c3c666f9e

Show
Ignore:
Timestamp:
08/09/07 00:43:52 (1 year ago)
Author:
"Brian Warner <warner@lothar.com>"
branch:
default
Message:

setup.py: add classifiers= and other metadata. Closes #7.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ChangeLog

    r221 r222  
    112007-08-09  Brian Warner  <warner@lothar.com> 
     2 
     3        * setup.py: add classifiers= and platforms=, update metadata, so 
     4        that I can use 'setup.py register' for the next release. Closes #7. 
    25 
    36        * README: update references to the home page. Closes #9. 
  • setup.py

    r46 r222  
    1111        description="Foolscap contains an RPC protocol for Twisted.", 
    1212        author="Brian Warner", 
    13         author_email="warner@twistedmatrix.com", 
    14         url="http://twistedmatrix.com/trac/wiki/FoolsCap", 
     13        author_email="warner-foolscap@lothar.com", 
     14        url="http://foolscap.lothar.com/", 
     15        download_url="http://foolscap.lothar.com/releases/foolscap-0.1.5.tar.gz", 
    1516        license="MIT", 
    1617        long_description="""\ 
     
    2021object reference system, and a capability-based security model. 
    2122""", 
     23        classifiers=[ 
     24        "Development Status :: 3 - Alpha", 
     25        "Operating System :: OS Independent", 
     26        "License :: OSI Approved :: MIT License", 
     27        "Programming Language :: Python", 
     28        "Topic :: Internet", 
     29        "Topic :: Software Development :: Libraries :: Python Modules", 
     30        "Topic :: System :: Distributed Computing", 
     31        "Topic :: System :: Networking", 
     32        "Topic :: Software Development :: Object Brokering", 
     33        ], 
     34        platforms=["any"], 
     35         
    2236        packages=["foolscap", "foolscap/slicers", "foolscap/test"], 
    2337        )