-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial file structure changes for Package (#16)
- Loading branch information
Showing
15 changed files
with
57 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#Jupyter notebook checkpoints | ||
**/.ipynb_checkpoints/* | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
*.egg-info | ||
|
||
# Python build artifacts | ||
build/ | ||
dist/ | ||
|
||
#ignored examples files | ||
examples/*.log | ||
|
||
# Editors | ||
.vscode/ | ||
.idea/ | ||
|
||
# Type checking | ||
.mypy_cache | ||
|
||
.coverage |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", "estimators.contextual_bandits", "estimators.slates", "estimators.utils"], | ||
install_requires= ['scipy>=0.9'], | ||
tests_require=['pytest'], | ||
python_requires=">=3.6", | ||
) |