Skip to content

Commit 79394df

Browse files
committed
Structure package
Add requirements.txt back
1 parent 993c080 commit 79394df

10 files changed

+25
-0
lines changed

estimators/__init__.py

Whitespace-only changes.
File renamed without changes.
File renamed without changes.

ds_parse.py estimators/ds_parse.py

File renamed without changes.
File renamed without changes.

mle.py estimators/mle.py

File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.

setup.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as f:
4+
long_description = f.read()
5+
6+
setuptools.setup(
7+
name="vw-estimators",
8+
version="0.0.1",
9+
description="Python package of estimators to perform off-policy evaluation ",
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
url="https://github.com/VowpalWabbit/estimators.git",
13+
license="BSD 3-Clause License",
14+
classifiers=[
15+
"Intended Audience :: Science/Research",
16+
"License :: OSI Approved :: BSD License",
17+
"Programming Language :: Python :: 3.6",
18+
"Operating System :: OS Independent",
19+
"Topic :: Scientific/Engineering"
20+
],
21+
packages=["estimators"],
22+
install_requires= ['scipy>=0.9'],
23+
tests_require=['pytest'],
24+
python_requires=">=3.6",
25+
)

0 commit comments

Comments
 (0)