-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1.17 KB
/
setup.py
File metadata and controls
37 lines (31 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- python -*-
# -*- coding: utf-8 -*-
from setuptools import setup, Extension
version = '0.2'
setup(name='python-recode',
version=version,
description='A Python extension to convert files between character sets',
author='Frederic Gobry',
author_email='gobry@pybliographer.org',
maintainer="Germán Poo-Caamaño",
maintainer_email='gpoo@gnome.org',
url='https://github.com/pybliographer/python-recode',
license='GPL',
long_description='''
This module contains a simple binding to GNU Recode, a library to
convert text and files between character sets.
It requires the GNU Recode and its development header.
''',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Topic :: Text Processing :: Filters',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='recode text-processing',
ext_modules=[
Extension('recode', ['recodemodule.c'],
libraries=['recode'])
])