-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrever.xsh
More file actions
23 lines (19 loc) · 700 Bytes
/
rever.xsh
File metadata and controls
23 lines (19 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$GITHUB_ORG = 'scopatz'
$PROJECT = $GITHUB_REPO = 'xontrib-kitty'
$WEBSITE_URL = 'https://github.com/scopatz/xontrib-kitty'
$ACTIVITIES = ['authors',
'version_bump', 'changelog',
'tag', 'push_tag', 'ghrelease',
'pypi',
'conda_forge',
]
$PYPI_SIGN = False
$AUTHORS_FILENAME = "AUTHORS.rst"
$VERSION_BUMP_PATTERNS = [
('xontrib_kitty/__init__.py', r'__version__\s*=.*', '__version__ = "$VERSION"'),
('setup.py', r'version\s*=.*', 'version="$VERSION",'),
]
$CHANGELOG_FILENAME = 'CHANGELOG.rst'
$CHANGELOG_TEMPLATE = 'TEMPLATE.rst'
$TAG_REMOTE = 'git@github.com:scopatz/xontrib-kitty.git'
$TAG_TARGET = 'master'