-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
28 lines (25 loc) · 943 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="vw-estimators",
version="0.2.2",
description="Python package of estimators to perform off-policy evaluation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VowpalWabbit/estimators.git",
license="BSD 3-Clause License",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
],
package_dir={"": "src"},
packages=["estimators", "estimators.bandits", "estimators.ccb", "estimators.slates"],
package_data={"estimators": ["py.typed"]},
install_requires= ['scipy>=0.9'],
tests_require=['pytest'],
python_requires=">=3.7",
)