-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
55 lines (49 loc) · 1.31 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
base_packages = [
'pandas',
'numpy',
'scipy',
'scikit-learn',
'networkx',
'python-Levenshtein',
'thefuzz',
'modAL-python',
'openpyxl',
'pytest',
'fancyimpute',
'pyminhash'
]
util_packages = [
"matplotlib",
"jupyterlab",
]
docs_packages = [
"sphinx==3.5.4",
"nbsphinx",
'sphinx_rtd_theme'
]
dev_packages = base_packages + util_packages + docs_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='DedupliPy',
version='0.8',
author="Frits Hermans",
description="End-to-end deduplication solution",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fritshermans/deduplipy",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=['notebooks']),
package_data={"deduplipy": ["data/*.xlsx", "data/*.csv"]},
install_requires=base_packages,
extras_require={
"base": base_packages,
"dev": dev_packages,
"docs": docs_packages,
},
python_requires=">=3.6.9",
)