File tree Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Code style: black] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/psf/black )
4
4
[ ![ PyPI version] ( https://badge.fury.io/py/CausalPy.svg )] ( https://badge.fury.io/py/CausalPy )
5
+ ![ GitHub Repo stars] ( https://img.shields.io/github/stars/pymc-labs/causalpy?style=social )
6
+ ![ Read the Docs] ( https://img.shields.io/readthedocs/causalpy )
7
+ ![ PyPI - Downloads] ( https://img.shields.io/pypi/dm/causalpy )
5
8
6
9
A Python package focussing on causal inference in quasi-experimental settings. The package allows for sophisticated Bayesian model fitting methods to be used in addition to traditional OLS.
7
10
Original file line number Diff line number Diff line change 4
4
import causalpy .pymc_models
5
5
import causalpy .skl_experiments
6
6
import causalpy .skl_models
7
+ from causalpy .version import __version__
7
8
8
9
from .data import load_data
9
10
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.3 "
1
+ __version__ = "0.0.4 "
Original file line number Diff line number Diff line change 1
- include requirements.txt
2
1
include *.md *.rst
3
- include requirements.txt
4
2
include LICENSE
3
+ include requirements.txt
Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ def get_long_description():
17
17
18
18
19
19
# get version
20
- sys .path .insert (0 , os .path .abspath ("../" ))
20
+ # sys.path.insert(0, os.path.abspath("../"))
21
+ # from causalpy.version import __version__
22
+ exec (open ("causalpy/version.py" ).read ())
23
+
21
24
22
25
with open (REQUIREMENTS_FILE ) as f :
23
26
install_reqs = f .read ().splitlines ()
You can’t perform that action at this time.
0 commit comments