Skip to content

Commit

Permalink
Add a setup.py to make the installation easier
Browse files Browse the repository at this point in the history
  • Loading branch information
yml committed Jan 14, 2012
1 parent c904e29 commit 835e03a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kip.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@
import subprocess
import glob

__version__ = "0.1"
NAME = sys.argv[0]
HOME = os.path.expanduser('~/.kip/')


USAGE = """
{name} manages accounts details in gpg files.
Expand Down
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup, find_packages

VERSION = __import__('kip').__version__

setup(
name="kip",
version=VERSION,
author='Graham King',
author_email='',
description="kip Keeps Internet Passwords",
packages=find_packages(),
package_data={},
scripts = ['kip.py'],
url="https://github.com/grahamking/kip",
install_requires=['setuptools'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
]
)

0 comments on commit 835e03a

Please sign in to comment.