mirror of
https://github.com/pruzko/hakuin
synced 2024-11-08 15:59:24 +01:00
25 lines
353 B
INI
25 lines
353 B
INI
[build-system]
|
|
requires = [
|
|
"setuptools >= 65",
|
|
"wheel >= 0.38",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
[tool.setuptools]
|
|
packages = ["hakuin", "hakuin.dbms", "hakuin.utils"]
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
hakuin = ["data/models/*.pkl"]
|
|
|
|
|
|
[project]
|
|
name = "hakuin"
|
|
version = "0.1.0"
|
|
requires-python = ">=3"
|
|
dependencies = [
|
|
"dill",
|
|
"nltk",
|
|
]
|