You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
setup(name='KCnrtl',
|
|
version='0.4rc2',
|
|
description='Qt graphical client for the CNRTL french 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=find_packages(),
|
|
requires=['beautifulsoup4', 'httplib2', 'lxml'],
|
|
long_description=read('README.rst'),
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: X11 Applications :: Qt",
|
|
"Environment :: Console",
|
|
"Topic :: Utilities",
|
|
"Natural Language :: French",
|
|
"Intended Audience :: Education"
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['kcnrtl = kcnrtl.main:main'],
|
|
},
|
|
)
|