File: setup.py

package info (click to toggle)
python-bytecode 0.14.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 736 kB
  • sloc: python: 7,227; makefile: 161; sh: 21
file content (27 lines) | stat: -rw-r--r-- 488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3

# Prepare a release:
#
#  - git pull --rebase
#  - run tests: tox
#  - set release date in the changelog
#  - git commit -a
#  - git push
#  - check GHA CI status:
#    https://github.com/MatthieuDartiailh/bytecode/actions
#
# Release a new version:
#
#  - git tag VERSION
#  - git push --tags
#
# After the release:
#
#  - set version to n+1
#  - git commit -a -m "post-release"
#  - git push

from setuptools import setup

if __name__ == "__main__":
    setup()