Python package for detecting informal Persian text using regular expressions and rule-based methods
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 738B

8 months ago
8 months ago
1234567891011121314151617181920
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="informal_detector",
  4. version="0.1.2",
  5. description="A Python package to check if a text is informal Persian.",
  6. long_description=open('README.md', 'r', encoding='utf-8').read(),
  7. long_description_content_type='text/markdown',
  8. author="Mahta Fetrat",
  9. author_email="[email protected]",
  10. url="https://github.com/MahtaFetrat/Persian-Informal-Text-Detector",
  11. packages=find_packages(),
  12. classifiers=[
  13. "Programming Language :: Python :: 3",
  14. "Programming Language :: Python :: 2.7",
  15. "License :: OSI Approved :: GNU General Public License (GPL)",
  16. "Operating System :: OS Independent",
  17. ],
  18. python_requires='>=2.7',
  19. )