This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Domme, Sergej
committed
Sep 10, 2015
1 parent
17224ad
commit d13c28d
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
]) |