Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2020-12-09 22:37:51 +0300
committerCasey Deccio <casey@deccio.net>2020-12-09 22:37:51 +0300
commit95a7ac8cb660f3ef60eb2882541b9fba1722126d (patch)
tree09196cf22eeb3ac8c4a0caf3fe274f8f0a1b86a3 /setup.py
parentda843957bb44bcc3b0745386a64168b26c355f9f (diff)
Make dependency requirements consistent
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 370ab5e..176e643 100644
--- a/setup.py
+++ b/setup.py
@@ -134,7 +134,7 @@ powers the Web-based analysis available at http://dnsviz.net/ .''',
data_files=DOC_FILES + DATA_FILES + MAN_FILES + \
DOC_EXTRA_FILES + JQUERY_UI_FILES + JQUERY_FILES + RAPHAEL_FILES,
requires=[
- 'pygraphviz (>=1.4)',
+ 'pygraphviz (>=1.3)',
'm2crypto (>=0.37.0)',
'dnspython (>=1.13)',
],
@@ -149,7 +149,11 @@ powers the Web-based analysis available at http://dnsviz.net/ .''',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: System :: Networking :: Monitoring',