mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Updated requirements
This commit is contained in:
parent
f9d6454488
commit
3517902ae1
2 changed files with 14 additions and 10 deletions
|
@ -10,3 +10,5 @@
|
|||
# pygraphviz >= 1.3.1 (drawing dependencies diagram)
|
||||
# perl 5 language and graph-easy >= 0.75 (drawing dependencies ascii diagram)
|
||||
# python3-pythondialog >= 3.5.0 (Python interface to the UNIX dialog utility)
|
||||
|
||||
python-requests >= 2.22.0
|
||||
|
|
22
setup.py
22
setup.py
|
@ -34,12 +34,14 @@ try:
|
|||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
INSTALLATION_REQUIREMENTS = []
|
||||
DOCS_REQUIREMENTS = []
|
||||
TESTS_REQUIREMENTS = []
|
||||
OPTIONAL_REQUIREMENTS = [
|
||||
"python3-pythondialog >= 3.5.0",
|
||||
"pygraphviz >= 1.3.1"
|
||||
docs_requires = []
|
||||
tests_requires = []
|
||||
install_requires = [
|
||||
"requests>=2.22.0"
|
||||
]
|
||||
optional_requires = [
|
||||
"pythondialog>=3.5.0",
|
||||
"pygraphviz>=1.3.1"
|
||||
]
|
||||
|
||||
# Non-Python/non-PyPI optional dependencies:
|
||||
|
@ -75,11 +77,11 @@ setup(
|
|||
data_files=[("man/man8", ["man/slpkg.8"]),
|
||||
("/etc/bash_completion.d", ["conf/slpkg.bash-completion"]),
|
||||
("/etc/fish/completions", ["conf/slpkg.fish"])],
|
||||
install_requires=INSTALLATION_REQUIREMENTS,
|
||||
install_requires=install_requires,
|
||||
extras_require={
|
||||
"optional": OPTIONAL_REQUIREMENTS,
|
||||
"docs": DOCS_REQUIREMENTS,
|
||||
"tests": TESTS_REQUIREMENTS,
|
||||
"optional": optional_requires,
|
||||
"docs": docs_requires,
|
||||
"tests": tests_requires,
|
||||
},
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
|
Loading…
Reference in a new issue