mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Update requirements
This commit is contained in:
parent
7590e7cbdc
commit
0dd9294909
1 changed files with 10 additions and 0 deletions
10
setup.py
10
setup.py
|
@ -34,6 +34,12 @@ try:
|
|||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
INSTALLATION_REQUIREMENTS = []
|
||||
OPTIONAL_REQUIREMENTS = [
|
||||
"pygraphviz >= 1.3rc2",
|
||||
"graph-easy >= 0.75"
|
||||
]
|
||||
|
||||
setup(
|
||||
name="slpkg",
|
||||
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack",
|
||||
|
@ -47,6 +53,10 @@ setup(
|
|||
author_email=_meta_.__email__,
|
||||
url="https://github.com/dslackw/slpkg",
|
||||
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
|
||||
install_requires=INSTALLATION_REQUIREMENTS,
|
||||
extras_require={
|
||||
"optional": OPTIONAL_REQUIREMENTS,
|
||||
},
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
|
|
Loading…
Add table
Reference in a new issue