Skip to content

Commit

Permalink
compose setup.py module and make some docstring change.
Browse files Browse the repository at this point in the history
  • Loading branch information
liwei-lai committed Oct 14, 2012
1 parent 98c185e commit b7dade5
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
8 changes: 5 additions & 3 deletions papyrus.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
papyrus
~~~~~~~
A simple cmd program that manage the infomation of passwords.
A safely (use AES256 encrypt/decrypt) simple cmd program that manage
the infomation of passwords.
:copyright: (c) 2012 by Jason Lai.
:license: BSD, see LICENSE for more details.
Expand Down Expand Up @@ -216,7 +217,9 @@ def decrypt(cls, ciphertext, key):


class Papyrus(cmd.Cmd):
"""A simple cmd program that manage the infomation of passwords."""
"""A safely (use AES256 encrypt/decrypt) simple cmd program that manage
the infomation of passwords.
"""

prompt = u'(papyrus) >>> '
intro = ("Papyrus: A simple cmd program that manage the infomation of "
Expand Down Expand Up @@ -281,4 +284,3 @@ def do_EOF(self, line):

if __name__ == '__main__':
Papyrus().cmdloop()

29 changes: 28 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
# -*- coding:utf-8 -*-

__version__ = "0.3.1"
__version__ = "0.3"
__author__ = [
"Jason Lai <[email protected]>"
]


from setuptools import setup


setup(name='papyrus',
version=__version__,
description='A safely (use AES256 encrypt/decrypt) simple cmd program that manage the infomation of passwords.',
author='Jason Lai',
author_email='[email protected]',
url='TODO ----- github',
py_modules=['papyrus'],
license="BSD",
install_requires=[
'pycrypto',
]
platforms=["any"],
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Scheduling'
],
test_suite='test_papyrus'
)
File renamed without changes.

0 comments on commit b7dade5

Please sign in to comment.