Exemple #1
0
# The encoding of source files.
#source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'jenkins-autojobs'
copyright = u'2012, Georgi Valkov'

# 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 full version, including alpha/beta/rc tags.
release = version()

# The short X.Y version.
version = '%d.%d' % tuple(VERSION[0:2])

# 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 patterns, relative to source directory, that match files and
Exemple #2
0
requires = (
    'python-jenkins>=0.2',
    'lxml>=2.2.0',
    'PyYAML>=3.10'
)

scripts = (
    'jenkins-makejobs-git = jenkins_autojobs.git:main',
    'jenkins-makejobs-svn = jenkins_autojobs.svn:main',
    'jenkins-makejobs-hg  = jenkins_autojobs.hg:main',
)

kw = {
    'name'                 : 'jenkins-autojobs',
    'version'              : version(),

    'description'          : 'Scripts for automatically creating jenkins jobs from scm branches',
    'long_description'     : open(pjoin(here, 'README.rst')).read(),

    'author'               : 'Georgi Valkov',
    'author_email'         : '*****@*****.**',

    'license'              : 'New BSD License',

    'keywords'             : 'jenkins git mercurial svn',
    'classifiers'          : classifiers,

    'url'                  : 'https://github.com/gvalkov/jenkins-autojobs',

    'packages'             : ('jenkins_autojobs',),