source: pymigemo/trunk/setup.py @ 230

Revision 230, 347 bytes checked in by atzm, 11 years ago (diff)
  • fixed package name
  • Property svn:executable set to *
  • Property svn:keywords set to Id
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# $Id$
4
5from setuptools import setup, Extension
6
7setup(
8    name='pymigemo',
9    version='0.4',
10    description='C/Migemo Python binding',
11    author='Atzm WATANABE',
12    author_email='atzm@atzm.org',
13    license='BSD-2',
14    ext_modules=[Extension("migemo", ["pymigemo.c"], libraries=["migemo"])],
15)
Note: See TracBrowser for help on using the repository browser.