forked from fairlearn/fairlearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.36 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright (c) Microsoft Corporation and Fairlearn contributors.
# Licensed under the MIT License.
import setuptools
import fairlearn
# Fetch ReadMe
with open("README.rst", "r") as fh:
long_description = fh.read()
# Use requirements.txt to set the install_requires
with open("requirements.txt") as f:
install_requires = [line.strip() for line in f]
setuptools.setup(
name=fairlearn.__name__,
version=fairlearn.__version__,
author=(
"Miroslav Dudik, Richard Edgar, Adrin Jalali, Roman Lutz, Michael Madaio, Hilde"
" Weerts, Allie Saizan"
),
author_email="[email protected]",
description="A Python package to assess and improve fairness of machine learning models.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fairlearn/fairlearn",
packages=setuptools.find_packages(),
python_requires=">=3.8",
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
include_package_data=True,
zip_safe=False,
)