-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 697 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 697 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
from setuptools import setup
dependencies = [
'seaborn',
'statsmodels',
'scipy',
'patsy',
'matplotlib',
'pandas',
'numpy'
]
VERSION = "0.3.4.2"
setup(
name='pymatch',
packages=['pymatch'],
version=VERSION,
description='Matching techniques for Observational Studies',
author='Ben Miroglio',
author_email='[email protected]',
url='https://github.com/benmiroglio/pymatch',
download_url='https://github.com/benmiroglio/pymatch/archive/{}.tar.gz'.format(VERSION),
keywords=['logistic', 'regression', 'matching', 'observational', 'study', 'causal', 'inference'],
include_package_data=True,
install_requires=dependencies
)