Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ __pycache__
build
dist
*.pyc
_build/
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: python

install:

before_script:
- "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash"

script:
# your build scripts before running `fossa`
# NOTE: before running `fossa` make sure to save your FOSSA_API_KEY in your
# environment variable in Travis see below.
- fossa init
- fossa analyze

after_success:
- cd <SOURCE_DIR> && fossa test
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2019 Uber Technology, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
include *.md

# Include the license file
#include LICENSE
include LICENSE
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<div align="center">
<a href="https://github.com/uber-common/causalml"> <img width="380px" height="140px" src="docs/_static/img/causalml_logo.png"></a>
</div>

------------------------------------------------------

[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2973/badge)](https://bestpractices.coreinfrastructure.org/projects/2973)


# Disclaimer
This project is experimental and the APIs are not considered stable.

Expand Down
Binary file added docs/_static/img/causalml_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pyflakes==1.0.0 # via flake8
pytest-cov==2.2.1
pytest==2.9.1
requests-toolbelt==0.6.0 # via twine
requests==2.10.0 # via requests-toolbelt, twine
requests==2.20.0 # via requests-toolbelt, twine
six==1.10.0 # via zest.releaser
twine==1.6.5 # via zest.releaser
zest.releaser==6.6.4
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
#license_files = LICENSE
license_files = LICENSE

[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
Expand Down