parent
8aa00a3566
commit
e43aef67fd
@ -0,0 +1,11 @@
|
||||
include kcnrtl/gui/*.ui
|
||||
include kcnrtl/resources/*.svg
|
||||
include kcnrtl/resources/*.qrc
|
||||
include icons/hicolor/128x128/apps/*
|
||||
include icons/hicolor/64x64/apps/*
|
||||
include icons/hicolor/32x32/apps/*
|
||||
include icons/hicolor/16x16/apps/*
|
||||
include icons/pixmaps/*
|
||||
include COPYING
|
||||
include CHANGES
|
||||
include kcnrtl.sh
|
@ -0,0 +1,23 @@
|
||||
======
|
||||
KCnrtl
|
||||
======
|
||||
|
||||
:Author: Bogdan Cordier bcord@hadaly.fr
|
||||
:Date: 2012-10-05
|
||||
:Copyright: GPLv3
|
||||
:Version: 0.1
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
===========
|
||||
|
||||
KCnrtl is a simple KDE graphical client to access the CNRTL linguistic resources.
|
||||
It offers the possibility to check the definitions, synomyms, antonyms of a given
|
||||
french word.
|
||||
|
||||
With the "Clipboard mode" you can easily check for a synonym/antonym
|
||||
and replace it in your text. To do so, juste check the "Clipboard mode" checkbox,
|
||||
copy in the clipboard any word, KCnrtl will do an automatic request to the CNRTL
|
||||
website and you can easily copy any synomym or antonym by just clicking on them.
|
||||
Now you just have to paste it back in you text !
|
||||
|
@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import os
|
||||
from distutils.core import setup
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
setup(name='KCnrtl',
|
||||
version='0.1',
|
||||
description='KDE graphical client for the CNRTL linguistic resources',
|
||||
license = "GPLv3",
|
||||
author="Bogdan Cordier",
|
||||
author_email="bcord@hadaly.fr",
|
||||
url="http://code.lm7.fr/p/kcnrtl/",
|
||||
download_url="http://code.lm7.fr/p/kcnrtl/downloads/",
|
||||
packages=['kcnrtl', 'kcnrtl.gui', 'kcnrtl.resources'],
|
||||
requires=['httplib2', 'bs4'],
|
||||
long_description=read('README'),
|
||||
classifiers=[
|
||||
"Development Status :: 4 - Beta",
|
||||
"Environment :: X11 Applications :: Qt"
|
||||
"Topic :: Utilities",
|
||||
"Natural Language :: French",
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
],
|
||||
)
|
Loading…
Reference in new issue