-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 982 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
# Copyright (c) 2021 Neil Dhir
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
import sys
# enforce >Python3 for all versions of pip/setuptools
assert sys.version_info >= (3,), "This package requires Python 3."
requirements = [
"graphviz",
"joblib",
"matplotlib",
"networkx",
"numpy",
"pandas",
"pygraphviz",
"scipy",
"seaborn",
"setuptools",
"tqdm",
]
setup(
name="ccb",
version="0.1",
description="Non-stationary multi-armed bandit under a causal perspective.",
url="https://github.com/neildhir/non-stationary-causal-bandits",
packages=find_packages(exclude=["test*"]),
include_package_data=True,
install_requires=requirements,
python_requires=">=3",
license="General Public License",
author="Neil Dhir",
author_email="[email protected]",
)