-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (33 loc) · 971 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
33
34
from setuptools import setup
setup(
name='leftcorner',
version='1.0.2',
description=(
"Implementation of the generalized left-corner transformation (Opedal et al. 2023), "
"an efficient method for eliminating left recursion from context-free grammars, "
"and many other utilities for working with context-free grammars."
),
project_url = 'https://github.com/rycolab/left-corner',
install_requires = [
'numpy',
'IPython',
'networkx',
'nltk',
'svgling', # nltk uses svgling to draw derivations
'tabulate',
'dill',
'pytest',
'graphviz', # for notebook visualization of left-recursion graph
'path'
],
authors = [
'Andreas Opedal',
'Eleftheria Tsipidi'
'Tiago Pimentel',
'Ryan Cotterell',
'Tim Vieira',
],
readme=open('README.md').read(),
scripts=[],
packages=['leftcorner'],
)