Mercurial > code > home > repos > grepedit
view setup.py @ 1:9251cd695508 default tip
v2.0 support for py3
author | drewp@bigasterisk.com |
---|---|
date | Tue, 05 Apr 2022 21:53:12 -0700 |
parents | 7ddcd92b2191 |
children |
line wrap: on
line source
from distutils.core import setup setup(name="grepedit", version="2.0", description="edit the result of a grep and modify the original files", author="Drew Perttula", author_email="drewp@bigasterisk.com", url="http://bigasterisk.com/grepedit", download_url="http://projects.bigasterisk.com/grepedit-2.0.tar.gz", scripts=["grepedit"], classifiers=[ # http://www.python.org/pypi?:action=list_classifiers "Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License (GPL)", "Topic :: Text Editors :: Text Processing", ], )