haspirater

detect aspirated 'h' in French words (local mirror of https://gitlab.com/a3nm/haspirater)
git clone https://a3nm.net/git/haspirater/
Log | Files | Refs | README | LICENSE

setup.py (561B)


      1 import setuptools
      2 
      3 with open("README", "r") as fh:
      4     long_description = fh.read()
      5 
      6 setuptools.setup(
      7     name='haspirater',
      8     version='0.2',
      9     author="Antoine Amarilli",
     10     author_email="a3nm@a3nm.net",
     11     package_data={'haspirater' :['*json']},
     12     description="detect aspirated 'h' in French words",
     13     long_description=long_description,
     14     long_description_content_type="text/markdown",
     15     url="https://gitlab.com/a3nm/haspirater",
     16     packages=setuptools.find_packages(),
     17     classifiers=[
     18         "Programming Language :: Python :: 3",
     19     ],
     20 )