From d500dc63ef08c66244e24d35987c2c86ae108042 Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Wed, 22 Jun 2022 14:30:59 -0700 Subject: [PATCH] neurondm setup.py update deps and descriptors --- neurondm/setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/neurondm/setup.py b/neurondm/setup.py index 2cb50b0e..9d1fe458 100644 --- a/neurondm/setup.py +++ b/neurondm/setup.py @@ -92,6 +92,13 @@ def _ontology_data_files(): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + 'Operating System :: POSIX :: Linux', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', ], keywords=('neuron types NIF ontology neuroscience phenotype ' 'OWL rdf rdflib data model'), @@ -99,9 +106,8 @@ def _ontology_data_files(): python_requires='>=3.6', tests_require=tests_require, install_requires=[ - 'augpathlib>=0.0.22', 'hyputils>=0.0.8', - 'pyontutils>=0.1.27', + 'pyontutils>=0.1.29', ], extras_require={'dev': ['pytest-cov', 'wheel'], 'test': tests_require,