plint

French poetry validator (local mirror of https://gitlab.com/a3nm/plint)
git clone https://a3nm.net/git/plint/
Log | Files | Refs | README

setup.py (700B)


      1 import setuptools
      2 
      3 with open("README", "r") as fh:
      4     long_description = fh.read()
      5 
      6 setuptools.setup(
      7     name='plint',
      8     version='0.1',
      9     author="Antoine Amarilli",
     10     author_email="a3nm@a3nm.net",
     11     description="French poetry validator",
     12     package_data={'plint' :['data/*', 'res/*']},
     13     long_description=long_description,
     14     long_description_content_type="text/markdown",
     15     install_requires=["frhyme", "haspirater"],
     16     url="https://gitlab.com/a3nm/plint",
     17     packages=setuptools.find_packages(),
     18     classifiers=[
     19         "Programming Language :: Python :: 3",
     20     ],
     21     entry_points={
     22         'console_scripts': [
     23             'poemlint=plint.__main__:main',
     24         ],
     25     },
     26 )