-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·49 lines (46 loc) · 1.63 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
setuptools.setup(
name='valentine',
version='0.3.0',
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.3.0.tar.gz',
packages=setuptools.find_packages(exclude=('tests*', 'examples*')),
install_requires=[
'setuptools',
'numpy>=2.0,<3.0',
'pandas>=1.3,<2.3',
'nltk>=3.9.1,<4.0',
'anytree>=2.9,<3.0',
'networkx>=2.8,<4.0',
'chardet>=5.2.0,<6.0.0',
'jellyfish>=0.9,<1.2',
'PuLP>=2.5,<3.0',
'POT>=0.9.5,<1.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.9,<3.14',
long_description=long_description,
long_description_content_type='text/markdown'
)