-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 806 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 806 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
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name='pygments-julia',
description='Pygments lexers for Julia.',
long_description=open('README.md').read(),
keywords='pygments julia lexer',
packages=find_packages(),
install_requires=['pygments>=2.2'],
entry_points='''[pygments.lexers]
julia1=pygments_julia:Julia1Lexer
jlcon1=pygments_julia:Julia1ConsoleLexer
''',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)