-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='pygments_zenburn',
version='0.9.0',
packages=find_packages(),
entry_points='''[pygments.styles]
zenburn = zenburn.style:ZenburnStyle''',
classifiers = [
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Development Status :: 6 - Mature',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Filters',
'Topic :: Utilities',
],
license = 'BSD License',
author = 'Lewis Franklin',
author_email = 'lewis.franklin@gmail.com',
description = 'Syntax highlighting for Pygments based on the Zenburn theme',
long_description = __doc__,
keywords = 'syntax highlighting',
platforms = 'any',
url = 'https://github.com/brolewis/pygments_zenburn',
)