-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.01 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
from setuptools import setup, find_packages
setup(name='pygments-prometheus',
version='1.0',
description='Pygments lexer for prometheus metrics',
long_description=open('README.rst').read() + '\n' +
open('CHANGES.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
keywords='pygments prometheus',
author='Kai Storbeck',
author_email='[email protected]',
url='https://github.com/giganteous/pygments-prometheus',
license='BSD',
py_modules=['prom'],
zip_safe=True,
install_requires=[
'setuptools',
'pygments',
],
tests_require=[
'nose',
],
entry_points={
'pygments.lexers': 'prometheus=prom:PrometheusLexer',
},
)