Metadata-Version: 2.4
Name: CFEDemands
Version: 0.8.1
Summary: Tools for estimating and computing Constant Frisch Elasticity (CFE) demands.
License: CC-BY-NC-SA-4.0
License-File: LICENSE.txt
Author: Ethan Ligon
Author-email: ligon@berkeley.edu
Requires-Python: >=3.9,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: ConsumerDemands (>=0.3.dev0)
Requires-Dist: fsspec
Requires-Dist: importlib-metadata (>=6.7.0)
Requires-Dist: matplotlib (>=3.5.1)
Requires-Dist: numpy (>=1.21.5)
Requires-Dist: pandas (>=1.3.5)
Requires-Dist: scikit-learn
Requires-Dist: scipy (>=1.7.3)
Project-URL: Repository, https://github.com/ligon/CFEDemands
Description-Content-Type: text/plain

#+TITLE: Constant Frisch Elasticity Demand Systems
#+AUTHOR: 
#+DATE: 

* Overview

This repository contains code for working with Constant Frisch
Elasticity (CFE) demand systems.

#+CAPTION: DOI
[[https://doi.org/10.5281/zenodo.17258292][https://zenodo.org/badge/827044619.svg]]

* Installation

The preferred installation method uses =pip=. If you don't have it
installed (or if your installation is old), see
https://pip.pypa.io/en/stable/installing/

** Method 1: Using pip

#+begin_src sh
pip install CFEDemands
#+end_src

** Method 2: As a Python package

Download and unzip/untar the relevant archive from
https://pypi.python.org/pypi/CFEDemands/, then:

#+begin_src sh
cd CFEDemands-[version]/
sudo python setup.py install
#+end_src

** Method 3: Using git

Clone the repository from https://github.com/ligon/CFEDemands to a
location in your filesystem, e.g. (for user jrandom, on a machine with
user directories under /home/):

#+begin_src sh
git clone git@github.com:ligon/CFEDemands.git /home/jrandom/CFEDemands
#+end_src

* Usage

After installation, import the package in Python using:

#+begin_src python
import cfe
#+end_src

Note: The package name for installation is =CFEDemands=, but the
import name is =cfe=.


