forked from dabeaz/sly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 854 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
tests_require = ['pytest', 'regex']
setup(name = "sly",
description="SLY - Sly Lex Yacc",
long_description = """
SLY is an implementation of lex and yacc for Python 3.
""",
license="""BSD""",
version = "0.4",
author = "David Beazley",
author_email = "[email protected]",
maintainer = "David Beazley",
maintainer_email = "[email protected]",
url = "https://github.com/dabeaz/sly",
packages = ['sly'],
tests_require = tests_require,
extras_require = {
'test': tests_require,
},
classifiers = [
'Programming Language :: Python :: 3',
]
)