-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.63 KB
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
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=77.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "hlink"
version = "4.2.2"
description = "Fast supervised pyspark record linkage software"
readme = "README.md"
requires-python = ">=3.10"
license = "MPL-2.0-no-copyleft-exception"
license-files = ["LICENSE.txt"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"colorama>=0.4.6",
"ipython>=8.3.0",
"Jinja2>=3.1.0",
"numpy>=1.22.0",
"pandas>=1.4.0",
"pyspark~=3.5.0",
"scikit-learn>=1.1.0",
"toml>=0.10.0",
"tomli>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.1.0",
"hypothesis>=6.0",
"black>=23.0",
"flake8>=5.0",
"pre-commit>=2.0",
"twine>=4.0",
"build>=0.6",
# setuptools is only necessary because Python 3.12 removed the distutils
# package. pyspark 3.5.X still imports this package, so we need it on
# Python 3.12 to run the tests and have hlink work at all.
"setuptools>=71.0",
"sphinx",
"recommonmark",
]
docs = ["sphinx", "recommonmark"]
lightgbm = ["synapseml>=1.0"]
xgboost = ["xgboost>=2.0", "pyarrow>=4.0"]
[project.scripts]
hlink = "hlink.scripts.main:cli"
[project.urls]
Homepage = "https://github.com/ipums/hlink"
Documentation = "https://hlink.docs.ipums.org"
Repository = "https://github.com/ipums/hlink"
Changelog = "https://hlink.docs.ipums.org/changelog.html"
[tool.setuptools.packages.find]
where = ["."]
include = ["hlink*"]
exclude = ["hlink_config"]