-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
executable file
·32 lines (28 loc) · 1016 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
31
32
import setuptools
import os
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('mabwiser', '_version.py')) as fp:
exec(fp.read())
setuptools.setup(
name="mabwiser",
description="MABWiser: Parallelizable Contextual Multi-Armed Bandits Library",
long_description=long_description,
long_description_content_type="text/markdown",
version=__version__,
author=__author__,
url="https://github.com/fidelity/mabwiser",
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=required,
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
project_urls={
"Documentation": "https://fidelity.github.io/mabwiser/",
"Source": "https://github.com/fidelity/mabwiser"
}
)