mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Use the locked packaging requirements
This commit is contained in:
parent
67b25add12
commit
0706ce9aa5
1 changed files with 19 additions and 5 deletions
24
setup.py
24
setup.py
|
@ -117,15 +117,29 @@ SALT_CRYPTO_REQS = os.path.join(
|
||||||
SALT_ZEROMQ_REQS = os.path.join(
|
SALT_ZEROMQ_REQS = os.path.join(
|
||||||
os.path.abspath(SETUP_DIRNAME), "requirements", "zeromq.txt"
|
os.path.abspath(SETUP_DIRNAME), "requirements", "zeromq.txt"
|
||||||
)
|
)
|
||||||
SALT_LONG_DESCRIPTION_FILE = os.path.join(os.path.abspath(SETUP_DIRNAME), "README.rst")
|
|
||||||
SALT_OSX_REQS = [
|
SALT_OSX_REQS = [
|
||||||
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "osx", "req.txt"),
|
# OSX packages already defined locked requirements
|
||||||
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "osx", "req_pyobjc.txt"),
|
os.path.join(
|
||||||
|
os.path.abspath(SETUP_DIRNAME),
|
||||||
|
"requirements",
|
||||||
|
"static",
|
||||||
|
"pkg",
|
||||||
|
"py{}.{}".format(*sys.version_info),
|
||||||
|
"darwin.txt",
|
||||||
|
)
|
||||||
]
|
]
|
||||||
SALT_WINDOWS_REQS = [
|
SALT_WINDOWS_REQS = [
|
||||||
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "windows", "req.txt"),
|
# Windows packages already defined locked requirements
|
||||||
os.path.join(os.path.abspath(SETUP_DIRNAME), "pkg", "windows", "req_win.txt"),
|
os.path.join(
|
||||||
|
os.path.abspath(SETUP_DIRNAME),
|
||||||
|
"requirements",
|
||||||
|
"static",
|
||||||
|
"pkg",
|
||||||
|
"py{}.{}".format(*sys.version_info),
|
||||||
|
"windows.txt",
|
||||||
|
)
|
||||||
]
|
]
|
||||||
|
SALT_LONG_DESCRIPTION_FILE = os.path.join(os.path.abspath(SETUP_DIRNAME), "README.rst")
|
||||||
|
|
||||||
# Salt SSH Packaging Detection
|
# Salt SSH Packaging Detection
|
||||||
PACKAGED_FOR_SALT_SSH_FILE = os.path.join(
|
PACKAGED_FOR_SALT_SSH_FILE = os.path.join(
|
||||||
|
|
Loading…
Add table
Reference in a new issue