setup.py 449 B

123456789101112
  1. from setuptools import setup, find_packages
  2. import highlighter
  3. setup(
  4. name='twentytab-highlighter',
  5. version=highlighter.__version__,
  6. author='20Tab S.r.l.',
  7. author_email='info@20tab.com',
  8. description='A django app permits to highlight the searched words (self.query) in a long text and truncates it, counts number of chars == max_length',
  9. url='https://github.com/20tab/twentytab-highlighter',
  10. packages=find_packages(),
  11. )