Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joidegn committed Oct 5, 2012
1 parent 885c6af commit 5be9a10
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions 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",
]

)

0 comments on commit 5be9a10

Please sign in to comment.