Skip to content

Commit

Permalink
Prepare for first release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
babab committed Aug 8, 2013
1 parent a90c32d commit 947f1b7
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
build
dist
Makefile
MANIFEST
*.pyc
__pycache__
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2013 Benjamin Althues <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include README.rst
include pycommand-example
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Download and install
====================

::

$ git clone git://bitbucket.org/babab/pycommand.git
# python setup.py install

Expand Down
6 changes: 3 additions & 3 deletions pycommand.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'''Create (recursive trees of) executable commands using minimal code'''
'''Create (recursive trees of) executable (sub)commands using minimal code'''

# Copyright (c) 2013 Benjamin Althues <[email protected]>
#
Expand All @@ -20,8 +20,8 @@
__docformat__ = 'restructuredtext'
__author__ = "Benjamin Althues"
__copyright__ = "Copyright (C) 2013 Benjamin Althues"
__version_info__ = (0, 1, 0, 'alpha', 0)
__version__ = '0.1.0-dev'
__version_info__ = (0, 1, 0, 'beta', 0)
__version__ = '0.1.0'

long_description = '''pycommand is a module with one simple `CommandBase` class
that you can use to create executable commands for your python programs with
Expand Down
17 changes: 15 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,20 @@
license='ISC',
long_description=pycommand.long_description,
platforms='any',
# classifiers=[
# ],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Shells',
'Topic :: System :: Software Distribution',
'Topic :: Terminals',
'Topic :: Utilities',
],
scripts=['pycommand-example'],
)

0 comments on commit 947f1b7

Please sign in to comment.