|
|
|
@ -7,7 +7,7 @@ def read(fname):
|
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
|
|
|
|
|
setup(name='KCnrtl',
|
|
|
|
|
version='0.4rc1',
|
|
|
|
|
version='0.4rc2',
|
|
|
|
|
description='Qt graphical client for the CNRTL french linguistic resources',
|
|
|
|
|
license = "GPLv3",
|
|
|
|
|
author="Bogdan Cordier",
|
|
|
|
@ -16,7 +16,7 @@ setup(name='KCnrtl',
|
|
|
|
|
download_url="http://code.lm7.fr/p/kcnrtl/downloads/",
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
requires=['beautifulsoup4', 'httplib2', 'lxml'],
|
|
|
|
|
long_description=read('README'),
|
|
|
|
|
long_description=read('README.rst'),
|
|
|
|
|
classifiers=[
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Environment :: X11 Applications :: Qt",
|
|
|
|
@ -25,5 +25,8 @@ setup(name='KCnrtl',
|
|
|
|
|
"Natural Language :: French",
|
|
|
|
|
"Intended Audience :: Education"
|
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': ['kcnrtl = kcnrtl.main:main'],
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|