forked from delftdata/valentine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (44 loc) · 1.57 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
setuptools.setup(
name='valentine',
version='0.1.7',
description='Valentine Matcher',
classifiers=classifiers,
license_files=('LICENSE',),
author='Delft Data',
author_email='[email protected]',
maintainer='Delft Data',
maintainer_email='[email protected]',
url='https://delftdata.github.io/valentine/',
download_url='https://github.com/delftdata/valentine/archive/refs/tags/v0.1.7.tar.gz',
packages=setuptools.find_packages(exclude=('tests*', 'examples*')),
install_requires=[
'numpy>=1.22,<2.0',
'pandas>=1.3,<2.1',
'nltk>=3.6,<4.0',
'anytree>=2.8,<2.9',
'networkx>=2.8,<4.0',
'chardet>=5.0.0,<6.0.0',
'levenshtein>=0.20.7,<1.0',
'PuLP>=2.5.1,<3.0',
'pyemd>=1.0.0,<2.0',
'python-dateutil>=2.8,<3.0'
],
keywords=['matching', 'valentine', 'schema matching', 'dataset discovery', 'coma', 'cupid', 'similarity flooding'],
include_package_data=True,
python_requires='>=3.8,<3.13',
long_description=long_description,
long_description_content_type='text/markdown'
)