0
|
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 )
|