Skip to content

Commit

Permalink
Adding a setup.py script to easy install
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesús Espino committed May 2, 2012
1 parent d52c3f2 commit a61acb9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-

#from distutils.core import setup
from setuptools import setup, find_packages

setup(
name = "cdbookmarks",
version = "0.0.1",
description = "Simple directory bookmark tool",
author = "Jesús Espino",
author_email = "jespinog@gmail.com",
url = "https://github.com/jespino/cdbookmarks",
scripts = ['cdbookmarks', 'cdb.sh'],
license = "BSD",
classifiers = [
'Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
],
)

0 comments on commit a61acb9

Please sign in to comment.