forked from PaddlePaddle/PaddleClas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (29 loc) · 1.01 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
[build-system]
requires = ["setuptools==72.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "paddleclas"
description = "A treasure chest for visual recognition powered by PaddlePaddle."
keywords=[
'image-classification', 'image-recognition', 'pretrained-models',
'knowledge-distillation', 'product-recognition', 'autoaugment',
'cutmix', 'randaugment', 'gridmask', 'deit', 'repvgg',
'swin-transformer', 'image-retrieval-system'
]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dynamic = ["version", "dependencies"]
[project.scripts]
paddleclas = "paddleclas.paddleclas:main"
[tool.setuptools.dynamic]
version = {file = "version.txt"}
dependencies = {file = "requirements.txt"}