-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 1 KB
/
setup.py
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
34
# -*- coding: utf-8 -*-
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name='pygments-style-heringer',
version='0.2',
description='A Pygments style inspired by Microsoft SSMS but with modified colors.',
keywords='pygments style',
license='BSD',
author='Matthias Lüken',
url='https://github.com/matthiaslueken/pygments-style-heringer',
packages=find_packages(),
install_requires=['pygments >= 2.2'],
entry_points='''[pygments.styles]
heringer=pygments_style_heringer:HeringerStyle''',
classifiers=[
'Development Status :: 4 - Beta',
'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',
],
)