Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
added build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Domme, Sergej committed Sep 10, 2015
1 parent 17224ad commit d13c28d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from pybuilder.core import use_plugin, init, Author

use_plugin("python.core")
use_plugin("python.unittest")
use_plugin("python.install_dependencies")
use_plugin("python.flake8")
use_plugin("python.coverage")
use_plugin("python.distutils")


name = "yamlreader"
summary = 'Merge YAML data from given files, dir or file glob'
authors = [Author('Schlomo Schapiro', "schlomo.schapiro@immobilienscout24.de")]
url = 'https://github.com/ImmobilienScout24/yamlreader'
version = '3.0.1'
description = open("README.rst").read()
license = 'Apache License 2.0'

default_task = ["clean", "analyze", "publish"]


@init
def set_properties(project):
project.depends_on("PyYAML")

project.set_property('distutils_console_scripts', ['yamlreader=yamlreader:__main'])

project.set_property("distutils_classifiers", [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
])

0 comments on commit d13c28d

Please sign in to comment.