blob: 4bf639a05cd37fc170bd981c76e7b638ab32be00 (
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
|
%global debug_package %{nil}
Name: python-fvcore
Version: 0.1.5.post20221221
Release: 1
Summary: Collection of common code that's shared among different research projects in FAIR computer vision team.
License: Apache-2.0
URL: https://github.com/facebookresearch/fvcore
Source0: https://files.pythonhosted.org/packages/a5/93/d056a9c4efc6c79ba7b5159cc66bb436db93d2cc46dca18ed65c59cc8e4e/fvcore-%{version}.tar.gz
BuildRequires: python3-devel python3-setuptools python3-setuptools_scm gcc
%description
fvcore is a light-weight core library that provides the most common and essential functionality
shared in various computer vision frameworks developed in FAIR, such as Detectron2, PySlowFast, and ClassyVision.
All components in this library are type-annotated, tested, and benchmarked.
%package -n python3-fvcore
Summary: Collection of common code that's shared among different research projects in FAIR computer vision team.
%{?python_provide:%python_provide python3-fvcore}
%description -n python3-fvcore
fvcore is a light-weight core library that provides the most common and essential functionality
shared in various computer vision frameworks developed in FAIR, such as Detectron2, PySlowFast, and ClassyVision.
All components in this library are type-annotated, tested, and benchmarked.
%prep
%autosetup -n fvcore-%{version} -p1
%build
%py3_build
%install
%py3_install
%files -n python3-fvcore
%{python3_sitelib}/*
%changelog
* Sun Jan 28 2024 Binshuo Zu <274620705z@gmail.com> - 0.1.5-1
- Package init
|