diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 01:39:46 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 01:39:46 -0400 |
commit | cf7506e368924df66c221eafe03f719a40729afe (patch) | |
tree | aa007d87a0ff5a48c1c8445ccad918784eafaa69 /pyproject.toml | |
download | ardsmm-cf7506e368924df66c221eafe03f719a40729afe.tar.gz |
Initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f9a7b94 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "ardsmm" +authors = [ + {name = "Joseph Hunkeler", email = "jhunkeler@gmail.com"}, +] +description = "Arma Reforger dedicated server mod manager" +readme = "README.md" +requires-python = ">=3.10" +keywords = ["arma", "reforger", "dedicated", "server", "mods"] +license = {text = "BSD-3-Clause"} +classifiers = [ + "Programming Language :: Python :: 3", +] +dependencies = [] +dynamic = ["version"] + +[project.scripts] +ardsmm = "ardsmm.__main__:main" + +[tool.setuptools_scm] +version_file = "ardsmm/_version.py" |