Mercurial > code > home > repos > grepedit
comparison setup.py @ 0:7ddcd92b2191
version 1.0 (from 2005-10-09)
author | drewp@bigasterisk.com |
---|---|
date | Tue, 05 Apr 2022 21:47:56 -0700 |
parents | |
children | 9251cd695508 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7ddcd92b2191 |
---|---|
1 from distutils.core import setup | |
2 | |
3 | |
4 setup(name="grepedit", | |
5 version="1.0", | |
6 description="edit the result of a grep and modify the original files", | |
7 author="Drew Perttula", | |
8 author_email="drewp@bigasterisk.com", | |
9 url="http://bigasterisk.com/grepedit", | |
10 download_url="http://projects.bigasterisk.com/grepedit-1.0.tar.gz", | |
11 | |
12 scripts=["grepedit"], | |
13 | |
14 classifiers=[ # http://www.python.org/pypi?:action=list_classifiers | |
15 "Development Status :: 5 - Production/Stable", | |
16 "Programming Language :: Python", | |
17 "Environment :: Console", | |
18 "Intended Audience :: Developers", | |
19 "Intended Audience :: System Administrators", | |
20 "Intended Audience :: End Users/Desktop", | |
21 "License :: OSI Approved :: GNU General Public License (GPL)", | |
22 "Topic :: Text Editors :: Text Processing", | |
23 ], | |
24 ) |