-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·70 lines (64 loc) · 2.57 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/python
# Encoding: ISO-8859-1
# -----------------------------------------------------------------------------
# Project : LambdaFactory
# -----------------------------------------------------------------------------
# Author : Sebastien Pierre <sebastien.pierre@gmail.com>
# License : Revised BSD License
# -----------------------------------------------------------------------------
# Creation date : 2008-04-17
# Last mod. : 2016-11-29
# -----------------------------------------------------------------------------
from distutils.core import setup
NAME = "lambdafactory"
VERSION = "0.8.9"
WEBSITE = "http://github.com/sebastien/lambdafactory/" + NAME.lower()
SUMMARY = "Programming language development toolkit"
DESCRIPTION = """\
LambdaFactory is a library/tool/framework that eases the development of
programming languages by allowing you to plug-in your parser, drive the factory,
create your program representation and translate it Python, JavaScript,
ActionScript or Pnuts (and you can add your own).
LambdaFactory provides a fine-grained OO model to represent your program, and
also offers a flexible architecture to insert your own program transformation
passes (documentation, representation, analysis, optimization)
"""
# ------------------------------------------------------------------------------
#
# SETUP DECLARATION
#
# ------------------------------------------------------------------------------
setup(
name = NAME,
version = VERSION,
author = "Sebastien Pierre", author_email = "sebastien.pierre@gmail.com",
description = SUMMARY, long_description = DESCRIPTION,
license = "Revised BSD License",
keywords = "program representation, structural analysis, documentation",
url = WEBSITE,
download_url = WEBSITE + "/%s-%s.tar.gz" % (NAME.lower(), VERSION) ,
package_dir = { "": "dist" },
package_data = {
"lambdafactory.languages.javascript": ["*.js"]
},
packages = [
"lambdafactory",
"lambdafactory.languages",
"lambdafactory.languages.actionscript",
"lambdafactory.languages.javascript",
"lambdafactory.languages.python",
"lambdafactory.languages.pnuts"
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
# TODO: Add more here
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
]
)
# EOF - vim: tw=80 ts=4 sw=4 noet