mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-06 08:46:21 +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:
|
except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
|
INSTALLATION_REQUIREMENTS = []
|
||||||
|
OPTIONAL_REQUIREMENTS = [
|
||||||
|
"pygraphviz >= 1.3rc2",
|
||||||
|
"graph-easy >= 0.75"
|
||||||
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="slpkg",
|
name="slpkg",
|
||||||
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack",
|
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack",
|
||||||
|
@ -47,6 +53,10 @@ setup(
|
||||||
author_email=_meta_.__email__,
|
author_email=_meta_.__email__,
|
||||||
url="https://github.com/dslackw/slpkg",
|
url="https://github.com/dslackw/slpkg",
|
||||||
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
|
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
|
||||||
|
install_requires=INSTALLATION_REQUIREMENTS,
|
||||||
|
extras_require={
|
||||||
|
"optional": OPTIONAL_REQUIREMENTS,
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
|
|
Loading…
Add table
Reference in a new issue