From 5be9a100f76ef5ec6992ef011018ca416bc4d816 Mon Sep 17 00:00:00 2001 From: Johannes Degn Date: Fri, 5 Oct 2012 19:08:34 +0200 Subject: [PATCH] added setup.py --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a3816a3 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='geturl', + version='0.2.1', + description='A CLI tool to get a public link for any file', + author='uams', + license="MIT", + url='https://github.com/uams/geturl', + scripts=['geturl'], + classifiers = [ + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Development Status :: 3 - Beta", + "Intended Audience :: Developers", + "Environment :: Console", + "Operating System :: OS Independent", + "License :: OSI Approved :: MIT License", + ] + +)