-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 707 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 707 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.3'
setup(name='pygments-sql-pl-lexer',
version=version,
description='Pygments lexer for SQL PL (SQL Procedural Language), the DB2 implementation of ANSI SQL/PSM',
long_description=open('README.rst').read(),
keywords='pygments sql lexer',
author='Dimitar Dimitrov',
author_email='admin@mitakas.com',
url='https://github.com/mitakas/pygments-sql-pl-lexer',
license='GPL',
packages=find_packages(),
install_requires=[
'pygments >= 1.4',
# -*- Extra requirements: -*-
],
entry_points="""
[pygments.lexers]
sqlpl=sql_pl_lexer:SqlPlLexer
""",
)