You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-filter-repo/release/setup.py

9 lines
246 B
Python

from setuptools import setup
import os
for f in ['git-filter-repo', 'git_filter_repo.py', 'README.md']:
try:
os.symlink("../"+f, f)
except FileExistsError:
pass
setup(use_scm_version=dict(root="..", relative_to=__file__))