forked from harmonydata/harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (59 loc) · 2.05 KB
/
pyproject.toml
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
[project]
name = "harmonydata"
version = "0.5.2"
description = "Harmony Tool for Retrospective Data Harmonisation"
readme = "README.md"
keywords = [
"harmony",
"harmonisation",
"harmonization",
"harmonise",
]
license = { file = "LICENSE" }
maintainers = [
{ name = "Thomas Wood", email = "thomas@fastdatascience.com" },
]
authors = [
{ name = "Thomas Wood", email = "thomas@fastdatascience.com" },
]
requires-python = ">=3.6,<=3.12.2"
classifiers=[
# see https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# core dependencies of harmony
# this set should be kept minimal!
dependencies = [
"pydantic==1.10.7; python_version <= '3.12'",
"pandas==2.0.0; python_version <= '3.12'",
"tika==2.6.0; python_version <= '3.12'",
"lxml==4.9.2; python_version <= '3.12'",
"langdetect==1.0.9; python_version <= '3.12'",
"XlsxWriter==3.0.9; python_version <= '3.12'",
"openpyxl==3.1.2; python_version <= '3.12'",
"spacy==3.5.3; python_version <= '3.12'",
"wget==3.2; python_version <= '3.12'",
"sentence-transformers==2.2.2; python_version <= '3.12'"
]
[project.optional-dependencies]
# dev - the developer dependency set, for contributors to harmony
dev = ["check-manifest", "pytest"]
[project.urls]
"Documentation" = "https://harmonydata.ac.uk/"
"Bug Reports" = "https://github.com/harmonydata/harmony/issues"
"Source Code" = "https://github.com/harmonydata/harmony"
[build-system]
requires = ["setuptools>=46.4.0", "wheel", "twine"]
build-backend = "setuptools.build_meta"