-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 998 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
# read the contents of README
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='patra-toolkit',
version='0.2.1',
packages=['tests', 'patra_toolkit'],
package_data={'patra_toolkit': ['schema/schema.json']},
include_package_data=True,
url='https://github.com/Data-to-Insight-Center/patra-toolkit.git',
license='BSD-3-Clause',
author='Data to Insight Center',
author_email='d2i@iu.edu',
description='Toolkit for semi-automated modelcard creation for AI/ML models.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'jsonschema>4.18.5',
'pandas>=2.0.0',
'numpy>=1.23.5,<2.0.0',
'requests>2.32.2',
'setuptools>=65.0.0'
],
extras_require={
'xai': ['shap~=0.46.0'],
'fairness': ['fairlearn~=0.11.0']
}
)