1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-04 02:28:34 +00:00

Merge pull request #6545 from ThomasWaldmann/add-pyproject.toml-1.2

add pyproject.toml, fix sys.path, fixes #6466
This commit is contained in:
TW 2022-04-07 21:27:07 +02:00 committed by GitHub
commit b602352d34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

3
pyproject.toml Normal file
View file

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "pkgconfig", "Cython"]
build-backend = "setuptools.build_meta"

View file

@ -19,6 +19,7 @@ try:
except ImportError: except ImportError:
cythonize = None cythonize = None
sys.path += [os.path.dirname(__file__)]
import setup_checksums import setup_checksums
import setup_compress import setup_compress
import setup_crypto import setup_crypto