-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
37 lines (31 loc) · 1 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
# -*- coding: utf-8 -*-
# Copyright FMR LLC <[email protected]>
# 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('mab2rec', '_version.py')) as fp:
exec(fp.read())
setuptools.setup(
name="mab2rec",
description="Mab2Rec: Multi-Armed Bandits Recommender",
long_description=long_description,
long_description_content_type="text/markdown",
version=__version__,
author=__author__,
url="",
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=required,
python_requires=">=3.8",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
project_urls={
"Source": "https://github.com/fidelity/mab2rec"
}
)