Skip to content

Commit

Permalink
Structure package
Browse files Browse the repository at this point in the history
Add requirements.txt back
  • Loading branch information
JuiP committed Feb 27, 2021
1 parent 4d05624 commit cadf3c2
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 0 deletions.
Empty file added estimators/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import setuptools

with open("README.md", "r") as f:
long_description = f.read()

setuptools.setup(
name="vw-estimators",
version="0.0.1",
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.6",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
],
packages=["estimators"],
install_requires= ['scipy>=0.9'],
tests_require=['pytest'],
python_requires=">=3.6",
)

0 comments on commit cadf3c2

Please sign in to comment.