File: setup.py

package info (click to toggle)
crmsh 4.0.0~git20190108.3d56538-3%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,636 kB
  • sloc: python: 29,464; sh: 827; exp: 249; xml: 226; makefile: 204; awk: 23
file content (33 lines) | stat: -rw-r--r-- 1,090 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/python

from __future__ import unicode_literals
from setuptools import setup

setup(name='pygments-crmsh-lexers',
      version='0.0.5',
      description='Pygments crmsh custom lexers.',
      keywords='pygments crmsh lexer',
      license='BSD',

      author='Kristoffer Gronlund',
      author_email='kgronlund@suse.com',

      url='https://github.com/ClusterLabs/crmsh',

      packages=['pygments_crmsh_lexers'],
      install_requires=['pygments>=2.0.2'],

      entry_points='''[pygments.lexers]
                      ANSIColorsLexer=pygments_crmsh_lexers:ANSIColorsLexer
                      CrmshLexer=pygments_crmsh_lexers:CrmshLexer''',

      classifiers=[
          'Environment :: Plugins',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: BSD License',
          'Operating System :: OS Independent',
          'Programming Language :: Python',
          'Programming Language :: Python :: 2',
          'Programming Language :: Python :: 3',
          'Topic :: Software Development :: Libraries :: Python Modules',
      ],)