Changeset 4801


Ignore:
Timestamp:
01/11/12 19:00:16 (18 months ago)
Author:
alxf
Message:

Add unittest for canvas module.

Location:
libcaca/trunk/python
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/python/setup.py

    r4398 r4801  
    11#!/usr/bin/env python 
     2# 
     3# Minimal setup.py script 
     4# 
    25 
    36from setuptools import setup 
    47 
     8import caca 
     9 
    510setup( 
    611    name='caca', 
    7     version='0.0', 
     12    author='Alex Foulon', 
     13    author_email='alxf@lavabit.com', 
     14    version=caca.get_version(), 
    815    packages=['caca'], 
    916    package_dir={ 
    1017        'caca': 'caca', 
    1118    }, 
     19    test_suite='test.alltests', 
    1220) 
     21 
Note: See TracChangeset for help on using the changeset viewer.