summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-10-19 20:27:28 +0200
committergbrandl <devnull@localhost>2006-10-19 20:27:28 +0200
commitf4d019954468db777760d21f9243eca8b852c184 (patch)
tree328b8f8fac25338306b0e7b827686dcc7597df23 /setup.py
downloadpygments-f4d019954468db777760d21f9243eca8b852c184.tar.gz
[svn] Name change, round 4 (rename SVN root folder).
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 00000000..130c40f6
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+import ez_setup
+ez_setup.use_setuptools()
+from setuptools import setup, find_packages
+
+import pygments
+
+setup(
+ name = 'Pygments',
+ version = pygments.__version__,
+ url = pygments.__url__,
+ license = pygments.__license__,
+ author = pygments.__author__,
+ description = 'Pygments is a syntax highlighting package written in Python.',
+ long_description = pygments.__doc__,
+ keywords = 'syntax highlighting',
+ packages = find_packages(),
+ scripts = ['pygmentize'],
+ platforms = 'any',
+ zip_safe = False,
+ include_package_data = True,
+ classifiers = [
+ 'License :: OSI Approved :: GNU Lesser General Public License (LGPL)',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: End Users/Desktop',
+ 'Intended Audience :: System Administrators',
+ 'Development Status :: 3 - Alpha',
+ 'Programming Language :: Python',
+ 'Operating System :: OS Independent',
+ ]
+)