forked from optimagic-dev/optimagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.39 KB
/
setup.py
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
from setuptools import find_packages
from setuptools import setup
setup(
name="estimagic",
version="0.0.30",
description="Tools for the estimation of (structural) econometric models.",
long_description="""
Estimagic is a Python package that helps to build high-quality and user
friendly implementations of (structural) econometric models.
It is designed with large structural models in mind. However, it is also
useful for any other estimator that numerically minimizes or maximizes a
criterion function (Extremum Estimator). Examples are maximum likelihood
estimation, generalized method of moments, method of simulated moments and
indirect inference.""",
license="BSD",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
"Development Status :: 2 - Pre-Alpha",
],
keywords=["econometrics", "statistics", "extremum estimation", "optimization"],
url="https://github.com/OpenSourceEconomics/estimagic",
author="Janos Gabler",
author_email="[email protected]",
packages=find_packages(exclude=["tests/*"]),
entry_points={"console_scripts": ["estimagic=estimagic.cli:cli"]},
zip_safe=False,
package_data={"estimagic": ["optimization/algo_dict.json"]},
include_package_data=True,
)