Changeset 3427

Show
Ignore:
Timestamp:
08/08/07 19:15:37 (1 year ago)
Author:
mscott
Message:

Add license and contact information to setup.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/apps/Twitabit/setup.py

    r3426 r3427  
    1111    version="1.0a1", 
    1212     
    13     #description="", 
     13    description=""" 
     14    Twit-a-bit is a simple example application that demonstrates how to 
     15    integrate the following software packages: 
     16 
     17    * Schevo 
     18    * SchevoPolicy 
     19    * Pylons 
     20    * AuthKit 
     21 
     22    The app itself is intentionally narrow in scope: 
     23 
     24    * register new accounts 
     25    * post bits of information 
     26    * read an individual's bits 
     27    * read all users' bits 
    1428     
    15     #author="", 
     29    The latest development version is available in a `Subversion 
     30    repository <http://schevo.org/svn/trunk/apps/Twitabit#egg=Twitabit-dev>`__. 
     31    """, 
    1632     
    17     #author_email="", 
     33    classifiers=[ 
     34    'Intended Audience :: Developers', 
     35    'License :: OSI Approved :: MIT License', 
     36    'Operating System :: OS Independent', 
     37    'Programming Language :: Python', 
     38    'Topic :: Database :: Database Engines/Servers', 
     39    'Topic :: Software Development :: Libraries :: Application Frameworks', 
     40    ], 
     41 
     42    author='Orbtech, L.L.C. and contributors', 
     43    author_email='schevo@googlegroups.com', 
    1844     
    19     #url="", 
    20      
     45    url='http://schevo.org/wiki/Twitabit', 
     46 
     47    license='MIT', 
     48 
     49    platforms=['UNIX', 'Windows'], 
     50 
    2151    install_requires=[ 
    22     "Pylons >= 0.9.6dev-r2294", 
    23     'Schevo >= 3.1a1dev-r3383', 
    24     'SchevoPolicy >= 1.0a1dev-r3384', 
     52    "Pylons == dev, >= 0.9.6dev-r2294", 
     53    'Schevo == dev, >= 3.1a1dev-r3383', 
     54    'SchevoPolicy == dev, >= 1.0a1dev-r3384', 
    2555    ], 
    2656