-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1023 Bytes
/
setup.py
File metadata and controls
38 lines (36 loc) · 1023 Bytes
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
from setuptools import setup, find_packages
import os
def read_README():
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name='diffindiff',
version='2.3.7',
description='diffindiff: Python library for convenient Difference-in-Differences analyses',
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
long_description=read_README(),
long_description_content_type='text/markdown',
author='Thomas Wieland',
author_email='geowieland@googlemail.com',
license_files=["LICENSE"],
package_data={
'diffindiff': ['tests/data/*'],
},
install_requires=[
'numpy',
'pandas',
'statsmodels==0.14.2',
'scipy==1.15.3',
'matplotlib',
'datetime',
'scikit-learn',
'xgboost',
'lightgbm',
'patsy',
'openpyxl',
'huff>=1.6.6'
],
test_suite='diffindiff.tests',
)