forked from d2cml-ai/csdid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 972 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 972 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
from setuptools import setup, find_packages
# with open('requirements.txt') as f:
# required = f.read().splitlines()
# print(required)
from csdid._version import __version
print(__version)
setup(
name = 'csdid',
version=__version,
url='https://github.com/d2cml-ai/csdid',
author='D2CML Team, Alexander Quispe, Carlos Guevara, Jhon Flroes',
keywords=['Causal inference', 'Research'],
license="MIT",
description='Difference in Difference in Python',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
],
install_requires=[
'pandas',
'numpy<=1.24.3',
'scipy',
'patsy',
'plotnine',
'twine'
],
packages=find_packages(),
package_data={
'data': ['data/*'],
'configs': ['configs/*']
}
)