-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 678 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (23 loc) · 678 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
26
27
from setuptools import setup, find_packages
setup(
name='pygments-pprint-sql',
version='0.1.0',
description='Pretty format your SQL queries for easier reading.',
author='Nathan Wright',
author_email='thatnateguy@gmail.com',
url='http://github.com/natedub/pygments-pprint-sql',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: Developers',
],
install_requires=[
'Pygments',
],
packages=find_packages(exclude=['ez_setup']),
entry_points="""
[pygments.filters]
pprint-sql = pygments_pprint_sql:SqlFilter
""",
)