https://bitbucket.org/BenjaminGalliot/lexika
Raw File
Tip revision: ee4a305469be2217494af447bf10b20d77efedd5 authored by Benjamin Galliot on 24 May 2018, 17:33:34 UTC
README.rst édité en ligne via Bitbucket
Tip revision: ee4a305
setup.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

__author__ = 'Benjamin Galliot'
__copyright__ = "Copyleft"
__license__ = "Spéciale"
__version__ = "0.4"
__email__ = "b.g01lyon@gmail.com"
__status__ = "Development Status :: 3 - Alpha"

setup(name='lexika',
      version=__version__,
      description='Logiciel de création de dictionnaires multilingues avec interface graphique.',
      author='Benjamin Galliot',
      author_email='b.g01lyon@gmail.com',
      url='https://bitbucket.org/BenjaminGalliot/lexika',
      packages=find_packages(),
      install_requires=['cchardet', 'lxml', 'regex'],
      include_package_data=True,
      entry_points={'console_scripts': ['lexika=lexika.base:main'],},
      classifiers=["Development Status :: 2 - Pre-Alpha",
                   "Intended Audience :: Science/Research",
                   "Intended Audience :: End Users/Desktop",
                   "Intended Audience :: Other Audience",
                   "Natural Language :: French",
                   "Operating System :: OS Independent",
                   "Programming Language :: Python :: 3 :: Only",
                   "Programming Language :: Python :: 3.6",
                   "Topic :: Software Development :: Build Tools",
                   "Topic :: Software Development :: Internationalization",
                   "Topic :: Software Development :: Localization",
                   "Topic :: Software Development :: Libraries :: Python Modules",
                   "Topic :: Text Processing :: Linguistic",
                   "Topic :: Text Processing :: Markup :: XML",
                   "Topic :: Utilities"],
      keywords="linguistique dictionnairique lexicographie linguistics dictionaric lexicography",


)
back to top