-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (26 loc) · 949 Bytes
/
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
from setuptools import setup
setup(
name='DMLSim',
packages=['dml_sim', 'dml_nn', 'dml_emb'],
version='0.2.1',
description='package to run DoubleML simulation studies and use Neural Networks approaches.',
author=['Sundermann, Moritz <[email protected]>',
'Teichert-Kluge, Jan <[email protected]>'],
install_requires=['DoubleML',
'joblib',
'matplotlib',
'numpy',
'openpyxl',
'pandas',
'Pillow',
'python-dateutil',
'scikit-learn',
'scipy=1.7.3',
'seaborn',
'skorch',
'statsmodels',
'torch',
'tqdm',
'transformers'],
license='MIT'
)