-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pyproject * ignore version * add deps * build without setup.py * increment version --------- Co-authored-by: tommyod <tommy.odland>
- Loading branch information
Showing
6 changed files
with
52 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "streprogen" | ||
dynamic = ["version", "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_scm] | ||
write_to = "streprogen/_version.py" | ||
|
||
[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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters