blob: 411c6f8ae24cc9ee34a5e729df16d43ffb3430bc (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
%global _empty_manifest_terminate_build 0
%global pypi_name flair
%global source_name flair
Name: python-%{pypi_name}
Version: 0.13.1
Release: 1%{?dist}
Summary: flair package for Python3
License: MIT
URL: https://github.com/flairNLP
Source0: https://github.com/flairNLP/flair/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Requires: python3-boto3 >= 1.20.27
Requires: python3-bpemb >= 0.3.2
Requires: python3-conllu >= 4.0
Requires: python3-deprecated >= 1.2.13
Requires: python3-ftfy >= 6.1.0
Requires: python3-gdown >= 4.4.0
Requires: python3-gensim >= 4.2.0
Requires: python3-huggingface-hub >= 0.10.0
Requires: python3-janome >= 0.4.2
Requires: python3-langdetect >= 1.0.9
Requires: python3-lxml >= 4.8.0
Requires: python3-matplotlib >= 2.2.3
Requires: python3-more-itertools >= 8.13.0
Requires: python3-mpld3 >= 0.3
Requires: python3-pptree >= 3.1
Requires: python3-python-dateutil >= 2.8.2
Requires: python3-pytorch_revgrad >= 0.2.0
Requires: python3-regex >= 2022.1.18
Requires: python3-scikit-learn >= 1.0.2
Requires: python3-segtok >= 1.5.11
Requires: python3-sqlitedict >= 2.0.0
Requires: python3-tabulate >= 0.8.10
Requires: python3-pytorch >= 1.5.0
Requires: python3-tqdm >= 4.63.0
Requires: python3-transformer-smaller-training-vocab >= 0.2.3
Requires: python3-transformers >= 4.18.0
Requires: python3-urllib >= 1.0.0
Requires: python3-wikipedia-api >= 0.5.7
Requires: python3-semver < 4.0.0, python3-semver >= 3.0.0
%description
%package -n python3-%{pypi_name}
Summary: flair package for Python3
Provides: python-%{pypi_name}
BuildRequires: python3-pip
%description -n python3-%{pypi_name}
%package help
Summary: Development documents and examples for flair
Provides: python3-%{pypi_name}-doc
%description help
documents of flair package for python3
%prep
%autosetup -p1 -n %{pypi_name}-%{version}
%build
%py3_build
%install
%py3_install
%files -n python3-%{pypi_name}
%doc *.md
%license LICENSE
%{python3_sitelib}/%{pypi_name}/*
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info/*
%{python3_sitelib}/tests/*
#%{_datadir}/jupyter/*
#%{_usr}/etc/jupyter/*
%changelog
* Mon Jan 22 2024 menma <1316818279@qq.com> - 0.9.5-1
- Package init
|