forked from davidchall/topas-pygments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 753 Bytes
/
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
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# extensions
entry_points = {
'pygments.styles': [
'topas=topas_pygments:TopasStyle',
],
'pygments.lexers': [
'topas=topas_pygments:TopasLexer',
'plain=topas_pygments:PlainLexer',
],
}
setup(
name='topas-pygments',
version='0.2.0',
description="TOPAS plugins for pygments",
author="David Hall",
author_email='dhcrawley@gmail.com',
url='https://github.com/davidchall/topas-pygments',
packages=[
'topas_pygments',
],
entry_points=entry_points,
include_package_data=True,
install_requires=[
'pygments',
]
)