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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#!/usr/bin/env python
# Prepare a release:
#
# - git pull --rebase # check that there is no incoming changesets
# - check version in ptrace/version.py and doc/conf.py
# - set release date in doc/changelog.rst
# - check that "python3 setup.py sdist" contains all files tracked by
# the SCM (Git): update MANIFEST.in if needed
# - git commit -a -m "prepare release VERSION"
# - Remove untracked files/dirs: git clean -fdx
# - run tests, type: tox --parallel auto
# - git push
# - check GitHub Actions status:
# https://github.com/vstinner/python-ptrace/actions
#
# Release a new version:
#
# - git tag VERSION
# - Remove untracked files/dirs: git clean -fdx
# - python3 setup.py sdist bdist_wheel
# - git push --tags
# - twine upload dist/*
#
# After the release:
#
# - increment version in ptrace/version.py and doc/conf.py
# - git commit -a -m "post-release"
# - git push
import importlib.util
from os import path
try:
# setuptools supports bdist_wheel
from setuptools import setup
except ImportError:
from distutils.core import setup
MODULES = ["ptrace", "ptrace.binding", "ptrace.syscall", "ptrace.syscall.linux", "ptrace.debugger"]
SCRIPTS = ("strace.py", "gdb.py")
CLASSIFIERS = [
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
with open('README.rst') as fp:
LONG_DESCRIPTION = fp.read()
ptrace_spec = importlib.util.spec_from_file_location("version", path.join("ptrace", "version.py"))
ptrace = importlib.util.module_from_spec(ptrace_spec)
ptrace_spec.loader.exec_module(ptrace)
PACKAGES = {}
for name in MODULES:
PACKAGES[name] = name.replace(".", "/")
install_options = {
"name": ptrace.PACKAGE,
"version": ptrace.__version__,
"url": ptrace.WEBSITE,
"download_url": ptrace.WEBSITE,
"author": "Victor Stinner",
"description": "python binding of ptrace",
"long_description": LONG_DESCRIPTION,
"classifiers": CLASSIFIERS,
"license": ptrace.LICENSE,
"packages": list(PACKAGES.keys()),
"package_dir": PACKAGES,
"scripts": SCRIPTS,
}
setup(**install_options)
|