-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 886 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 886 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
setup(
name = "pygments-bitbake",
version = "1.0.0",
license = "BSD",
author = "Simon Knopp",
author_email = "simon.knopp@pg.canterbury.ac.nz",
url = "https://github.com/sijk/pygments-bitbake",
description = "Pygments lexer for BitBake files.",
long_description = open('README.rst').read(),
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
],
install_requires = ["pygments"],
entry_points = {'pygments.lexers': 'bitbake = bitbake:BitbakeLexer'},
py_modules = ["bitbake"],
)