-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
45 lines (40 loc) · 1.35 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
[build-system]
requires = ["setuptools>=45"]
build-backend = "setuptools.build_meta"
[project]
name = "streprogen"
version = "4.0.2"
dynamic = ["readme"]
description = "The Python strength program generator."
authors = [
{name = "Tommy Odland", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["strength", "training", "health", "fitness", "generator", "weightlifting", "powerlifting", "exercise"]
requires-python = ">=3.8"
dependencies = [
"jinja2>=2.11.2",
"ortools>=7.7.7810",
]
[project.urls]
Homepage = "https://github.com/tommyod/streprogen"
Repository = "https://github.com/tommyod/streprogen.git"
[tool.setuptools.dynamic]
readme = {file = ["README.rst"], content-type = "text/x-rst"}
[tool.setuptools.packages.find]
where = ["."]
include = ["streprogen*"]
exclude = ["contrib", "docs", "tests"]
[tool.setuptools.package-data]
"streprogen" = ["templates/*", "*.tex", "*.html"]