-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
33 lines (32 loc) · 1.1 KB
/
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
33
from setuptools import setup
setup(
name='showast',
packages=['showast', 'showast.rendering', 'showast.util',],
version='0.3.0',
description = 'IPython notebook plugin for visualizing abstract syntax trees.',
license='MIT',
author='H. Chase Stevens',
author_email='[email protected]',
url='https://github.com/hchasestevens/show_ast',
install_requires=[
'ipython',
'graphviz',
],
extras_require={
'nltk': ['nltk', 'pillow'],
},
keywords='ipython jupyter notebook ast asts graphing visualization syntax',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Software Development :: Code Generators',
'Framework :: IPython',
'Topic :: Multimedia :: Graphics :: Presentation',
]
)