-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (26 loc) · 1.04 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
from setuptools import setup, find_packages
VERSION = '0.0.49'
DESCRIPTION = 'Fast and simple probabilistic data matching package'
# Setting up
setup(
name="healmatcher",
version=VERSION,
author="Joseph Shim",
author_email="<joseph.shim.rok@gmail.com>",
url = "https://github.com/JosephKBS/healmatcher",
description=DESCRIPTION,
long_description=open("README.md", 'r').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['splink','pandas','numpy','IPython','datetime','pyarrow'],
keywords=['probabilistic match', 'probabilistic data match', 'splink'],
include_package_data=True,
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)