forked from py-why/EconML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (62 loc) · 1.46 KB
/
setup.cfg
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[pycodestyle]
ignore=E402,W504
max-line-length=119
[pydocstyle]
; Use numpy style
convention=numpy
[build_sphinx]
version = 0.2
[metadata]
name = econml
version = 0.2
author = Microsoft Corporation
description = This package contains several methods for calculating Conditional Average Treatment Effects
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
keywords = treatment-effect
url = https://github.com/Microsoft/EconML
project_urls =
Bug Tracker=https://github.com/Microsoft/EconML/Issues
Source Code=https://github.com/Microsoft/EconML
Documentation=https://econml.azurewebsites.net/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find_namespace:
setup_requires =
pytest-runner
sphinx
sphinx_rtd_theme
install_requires =
numpy
scipy
scikit-learn >= 0.20.0
keras
sparse
tensorflow == 1.*
joblib >= 0.13.0
numba != 0.42.1
test_suite = econml.tests
tests_require =
pytest
pytest-xdist
matplotlib
pandas
jupyter
; TODO: remove matplotlib, pandas dependencies when cleaning up tests
; TODO: exclude tests?
[options.packages.find]
include =
econml
econml.*
[options.package_data]
; include all CSV files as data
* = *.csv
[tool:pytest]
addopts = --junitxml=junit/test-results.xml --verbose -s -n auto --strict
markers =
slow
notebook