-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pose_estimation_models"
readme = "README.md"
description = "Easily test and apply pairwise pose estimation models"
authors = [
{name = "Jianhao Jiao"},{email = "jiaojh1994@gmail.com"},
]
maintainers = [
{name = "Jianhao Jiao"},{email = "jiaojh1994@gmail.com"},
]
requires-python = ">= 3.8"
license = {file = "LICENSE"}
keywords = ["pose estimation"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dynamic = ["version",
"dependencies"]
[project.urls]
Homepage = "https://github.com/gogojjh/pose_estimation_models"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/gogojjh/pose_estimation_models"
# "Bug Tracker" = "https://github.com/me/spam/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
dependencies = { file = [
"./requirements.txt",
] }
version = { attr = "estimator.__version__" }
[tool.setuptools.packages]
find = {}