-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·65 lines (59 loc) · 2.33 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
#!/usr/bin/python
# Encoding: ISO-8859-1
# -----------------------------------------------------------------------------
# Project : Sugar
# -----------------------------------------------------------------------------
# Author : Sebastien Pierre <sebastien@type-z.org>
# License : Revised BSD License
# -----------------------------------------------------------------------------
# Creation date : 18-Mar-2008
# Last mod. : 18-Mar-2008
# -----------------------------------------------------------------------------
from distutils.core import setup
NAME = "Sugar"
VERSION = "0.8.6"
WEBSITE = "http://www.ivy.fr/" + NAME.lower()
SUMMARY = "The Sugar programming language"
DESCRIPTION = """\
Sugar is a new programming language designed to replace JavaScript
for client-side (and server-side) web development. Sugar is inspired by
languages such as Python, Smalltalk, Pascal, Eiffel and Lisp. Sugar can compile
to JavaScript, ActionScript and Python.
Sugar is object-oriented, uses class-based inheritance, and supports many cool
features such as Python-style slicing, pattern matching, closures,
map/filter/reduce syntaxes and optional type checking.
"""
# ------------------------------------------------------------------------------
#
# SETUP DECLARATION
#
# ------------------------------------------------------------------------------
setup(
name = NAME,
version = VERSION,
author = "Sebastien Pierre", author_email = "sebastien@ivy.fr",
description = SUMMARY, long_description = DESCRIPTION,
license = "Revised BSD License",
keywords = "programmin language, oop, web, javascript",
url = WEBSITE,
download_url= WEBSITE + "/%s-%s.tar.gz" % (NAME.lower(), VERSION) ,
package_dir = { "": "Sources" },
package_data= {
},
packages = [
"sugar"
],
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",
],
scripts = ["Scripts/sugar"]
)
# EOF - vim: tw=80 ts=4 sw=4 noet