From 03a9ff992b6bbfb013a780ea2604cd6391700161 Mon Sep 17 00:00:00 2001 From: Kevin Coyner Date: Sat, 15 Oct 2016 09:31:49 -0400 Subject: [PATCH] Add to initial move to github. --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..af63ce2 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python +# -*- coding: UTF-8 -*- + +from distutils.core import setup + +DESC = """Free replacement for rpl (replace strings in files).""" + +setup(name='rpl', + version='1.5.6', + description=DESC, + author='Goran Weinholt', + url='https://github.com/kcoyner/rpl', + license='GPL v2 or later', + scripts=['rpl'])