frhyme

guess the last phonemes of a French word (local mirror of https://gitlab.com/a3nm/frhyme)
git clone https://a3nm.net/git/frhyme/
Log | Files | Refs | README | LICENSE

setup.py (553B)


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