示例#1
0
文件: setup.py 项目: jrk/qslaunch
#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; coding: utf-8 -*-
"""
setup.py

:copyright: 2010 Serge Émond
:license: Apache License 2.0
"""

from setuptools import setup, find_packages
from qslaunch import get_version

setup(
    name='qslaunch',
    version= get_version().replace(' ', '-'),
    description='Simple QuickSilver launcher helper',
    long_description=u"""\
``qslaunch`` is a small framework to facilitate launching shell stuff from Quicksilver.

See also:
- `Mercurial repository`_
- `Documentation`_

.. _Mercurial repository: http://bitbucket.org/greyw/qslaunch/
.. _Documentation: http://packages.python.org/qslaunch/
""",
    author=u'Serge Émond',
    author_email='*****@*****.**',
    url='http://greyworld.net/en/projects/qslaunch/',
    license='Apache License 2.0',
    classifiers = [
示例#2
0
文件: conf.py 项目: jrk/qslaunch
# The encoding of source files.
#source_encoding = 'utf-8'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'qslaunch'
copyright = u'2010, Serge Émond'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = get_version()
# The full version, including alpha/beta/rc tags.
release = get_version(True)

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#language = None

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'

# List of documents that shouldn't be included in the build.
#unused_docs = []