-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 834 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 834 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
28
29
30
from setuptools import setup, find_packages
setup(
name='jac-blog-syntax',
version='1.0.0',
description='Jac syntax highlighter for blog',
py_modules=['jac_syntax_highlighter'],
install_requires=[
'mkdocs-material>=9.0.0',
'pymdown-extensions>=10.0',
'pygments>=2.14.0',
'mkdocs-video>=1.5.0',
'starlette>=0.27.0',
'uvicorn>=0.23.0',
'watchdog>=3.0.0',
'jaclang',
],
entry_points={
'pygments.lexers': [
'jac = jac_syntax_highlighter:JacLexer',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
)