-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (27 loc) · 911 Bytes
/
setup.py
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
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.1.2',
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='[email protected]',
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',
'fairlearn~=0.11.0',
'shap~=0.46.0',
'pandas>=2.0.0',
'numpy>=1.23.5,<2.0.0',
'requests>2.32.2',
]
)