-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (29 loc) · 1.01 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
# -*- coding: utf-8 -*-
# Copyright FMR LLC <opensource@fidelity.com>
# SPDX-License-Identifier: Apache-2.0
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
required = fh.read().splitlines()
with open(os.path.join('jurity', '_version.py')) as fp:
exec(fp.read())
setuptools.setup(
name="jurity",
description="fairness and evaluation library",
long_description=long_description,
long_description_content_type="text/markdown",
version=__version__,
author="FMR LLC",
url="https://github.com/fidelity/jurity",
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
project_urls={"Source": "https://github.com/fidelity/jurity"},
install_requires=required,
python_requires=">=3.8"
)