-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (30 loc) · 906 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup (
name='pygments-agentspeak',
version=1.1,
description='Pygments lexer for Jason/JaCaMo AgentSpeak.',
long_description=open('README.rst').read(),
keywords='pygments agentspeak jason jacamo lexer',
license='BSD',
packages=find_packages(),
install_requires=['pygments'],
entry_points =
"""
[pygments.lexers]
jason = lexers:JasonAgentLexer
jasonproject = lexers:JasonProjectLexer
jacamoproject = lexers:JaCaMoProjectLexer
[pygments.styles]
jacamo = styles:JaCaMoStyle
""",
classifiers=[
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)