--- /dev/null
+; Don't forget to define information about your Gerrit server
+; [gerrit]
+; url = https://review.example.org/gerrit/
+; username =
+; password =
+
+[add_reviewers]
+; set to True if you want to try things, without really adding
+dry_run = True
+
+[add_reviewers_rule_example]
+; Warning: if multiple criteria specified in one rule, all must match
+; Match project name
+project_regexp=^platform
+; Match change's branch name
+branch_regexp=^master$
+; Match if some files are changed
+file_regexp=^packaging/.+
+; Match author email or real name (Warning: case insensitive!)
+author_regexp=^john.doe@
+;
+; if all above criteria match, let's add following reviewers:
+;
+; List of people (email, username or real name)
+reviewer=user1, user2
+; List of groups
+reviewer_group=Release Engineers, SDK - Architects
+; Groups from project permissions
+project_groups_regexp=.+- (Maintainers|Integrators|Reviewers)
Group: Development/Languages/Python
Url: http://download.tizen.org/tools
Source: %{name}-%{version}.tar.gz
+Source1: add_reviewers.conf
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%prep
%setup -q -n %{name}-%{version}
+cp %{SOURCE1} .
%build
python setup.py build
%files
%defattr(-,root,root,-)
-%doc README.rst
+%doc README.rst add_reviewers.conf
%{python_sitelib}/*
%changelog