-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (36 loc) · 1.65 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
34
35
36
37
38
39
40
41
42
43
44
"""Delicatessen is a one-stop shop for all your sandwich (variance) needs. `delicatessen` implements a general API for
the generalized calculus of M-estimation. Both pre-built and custom, user-specified estimating equations are compatible
with the M-Estimator. For an introduction to M-Estimation, using `delicatessen`, and building your own estimating
equations, see the documentation at https://deli.readthedocs.io/en/latest/ .
To install the `delicatessen`, use the following command
$ python -m pip install delicatessen
"""
from setuptools import setup
exec(compile(open('delicatessen/version.py').read(),
'delicatessen/version.py', 'exec'))
with open("README.md") as f:
descript = f.read()
setup(name='delicatessen',
version=__version__,
description='Generalized M-Estimation',
keywords='m-estimation sandwich-variance estimating-equations',
packages=['delicatessen',
'delicatessen.estimating_equations'
],
include_package_data=True,
license='MIT',
author='Paul Zivich',
author_email='[email protected]',
url='https://github.com/pzivich/Deli',
classifiers=['Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=['numpy>=1.18.5',
'scipy>=1.9.0',
],
long_description=descript,
long_description_content_type="text/markdown",
)