-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.15 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.15 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
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
version = '2.0rc6'
long_description = 'LL(1) parser generator with expression parsing support'
setup(
name='hermes-parser',
version=version,
description=long_description,
author='Scott Frazer',
author_email='scott.d.frazer@gmail.com',
packages=['hermes'],
package_data={
'hermes': [
'templates/python/*.tpl',
'templates/java/*.tpl',
'templates/javascript/*.tpl',
'templates/c/*.tpl'
'templates/go/*.tpl'
]
},
install_requires=[
"moody-templates",
"xtermcolor",
"nose",
"pygments",
"hermes_pygments"
],
scripts={
'scripts/hermes',
},
license = 'MIT',
keywords = "Parser, Recursive Descent, LL(1), Pratt, Expression, Parser Generator",
url = "http://github.com/scottfrazer/hermes",
classifiers=[
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers"
]
)