-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 698 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 698 Bytes
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
from setuptools import (
setup,
find_packages
)
from interleaved import __version__ as package_version
setup(
name="interleaved",
version=package_version,
description="Tools for analyzed interleaved search A/B tests",
install_requires=[
"numpy>=1.0",
"scikit-learn>=0.20.0",
"pandas>=1.0"
],
packages=find_packages(),
python_requires=">=3.6",
url="https://github.com/bearloga/interleaved-py",
author="Wikimedia Foundation Product Analytics team",
author_email="product-analytics@wikimedia.org",
license="BSD 3-Clause",
include_package_data=True,
package_data={'': ['data/*.csv']},
tests_require=['pytest']
)