Skip to content

Commit

Permalink
correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMRuss committed Jun 17, 2024
1 parent 66d6832 commit ac9265d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def default_setup_args(*, version):
version=version,
author="Governance of Emerging Technologies Programme (Oxford Internet Insitute)",
url="https://github.com/ChrisMRuss/oxon-fair/",
description="AutoML Framework for evaluating and enforcing ML model fairness",
description="Toolkit for evaluating and enforcing ML model fairness",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache-2.0",
Expand Down Expand Up @@ -83,6 +83,7 @@ def default_setup_args(*, version):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
Expand All @@ -98,7 +99,7 @@ def default_setup_args(*, version):
return setup_args


version = "0.1.5"
version = "0.2"

install_requires = [
"numpy>=1.21.4",
Expand All @@ -107,8 +108,9 @@ def default_setup_args(*, version):

extras_require = dict()

test_requirements = ["tox", "pytest", "pytest-cov", 'autogluon', 'sklearn',
'matplotlib', 'flake8', 'linkcheckmd', 'ucimlrepo', 'fairlearn']
test_requirements = ["tox", "pytest", "pytest-cov", 'autogluon', 'scikit-learn',
'matplotlib', 'flake8', 'linkcheckmd', 'ucimlrepo', 'fairlearn',
'linkcheckmd', 'ipynbcompress', 'pytorch']

test_requirements = list(set(test_requirements))
extras_require["tests"] = test_requirements
Expand Down

0 comments on commit ac9265d

Please sign in to comment.