-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1 KB
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
from setuptools import setup, find_packages
version = '0.2'
setup(name='pygments-ipython-console',
version=version,
description='Syntax coloring for IPython Console (Same as Sphinx)',
long_description=open('README.rst').read() + '\n' +
open('CHANGES.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='pygments ipython conf lexer',
author='Matthew McKay',
author_email='mamckay@gmail.com',
url='',
license='BSD',
py_modules=['ipython_lexer'],
zip_safe=True,
install_requires=[
'setuptools',
],
entry_points={
'pygments.lexers': 'ipy=ipython_lexer:IPyLexer',
},
)