15 lines
487 B
Python
15 lines
487 B
Python
#! /usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='python-mode.el',
|
|
version='6.0.10',
|
|
url='http://launchpad.net/python-mode',
|
|
maintainer_email='andreas.roehler@online.de',
|
|
maintainer='Andreas Roehler',
|
|
description='Major mode for editing Python programs',
|
|
download_url='http://launchpad.net/python-mode/trunk/6.0.10/+download/python-mode.el-6.0.10.tar.gz',
|
|
license='GNU GPLv3, Python License',
|
|
)
|