|
| 1 | +$PROJECT = 'mitarspysigproc' |
| 2 | +$ACTIVITIES = [ |
| 3 | + 'version_bump', # Changes the version number in various source files (setup.py, __init__.py, etc) |
| 4 | + 'changelog', # Uses files in the news folder to create a changelog for release |
| 5 | + 'tag', # Creates a tag for the new version number |
| 6 | + 'push_tag', # Pushes the tag up to the $TAG_REMOTE |
| 7 | + #'pypi', # Sends the package to pypi |
| 8 | + #'conda_forge', # Creates a PR into your package's feedstock |
| 9 | + #'ghrelease' # Creates a Github release entry for the new tag |
| 10 | + ] |
| 11 | +$VERSION_BUMP_PATTERNS = [ ('setup.py', 'version\s*=.*,', "version='$VERSION',"), |
| 12 | +('docs/source/conf.py', 'release\s*=*.*,', "release = '$VERSION' "), |
| 13 | +('docs/source/conf.py', 'version\s*=*.*,', "version = '$VERSION' "), |
| 14 | +('recipes/conda/meta.yaml', r'version:\s*', "version: $VERSION"), |
| 15 | +('recipes/conda/meta.yaml', r'git_rev:\s*', "git_rev: $VERSION"), |
| 16 | +] |
| 17 | + |
| 18 | +$CHANGELOG_FILENAME = 'CHANGELOG.rst' # Filename for the changelog |
| 19 | +$CHANGELOG_TEMPLATE = 'TEMPLATE.rst' # Filename for the news template |
| 20 | + |
| 21 | +$PROJECT = "mitarspysigproc" |
| 22 | +$WEBSITE_URL = "https://github.com/MIT-Adaptive-Radio-Science/sigprocpython" |
| 23 | +$GITHUB_ORG = "MIT-Adaptive-Radio-Science" |
| 24 | +$GITHUB_REPO = "sigprocpython" |
| 25 | +$PYPI_NAME = "mitarspysigproc" |
| 26 | +$PYPI_RC = '~/.pypirc' |
0 commit comments