Skip to content

Commit

Permalink
Migrate from setup.cfg to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Miepee committed May 9, 2024
1 parent 657e10f commit 914e3c1
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 54 deletions.
46 changes: 46 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,52 @@
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"

[project]
name = "am2r_yams"
version = "2.0.0"
authors = [
{name = "Miepee"},
]
description = "An open source randomizer patcher for AM2R."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11"

]
dependencies = [
"pythonnet",
]

[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
]


[project.urls]
Repository = "https://github.com/randovania/YAMS"


# Entry Points for PyInstaller
[project.entry-points."pyinstaller40"]
hook-dirs = "am2r_yams.__pyinstaller:get_hook_dirs"


[tool.setuptools]
packages = ["am2r_yams"]

[tool.setuptools.package-data]
"*" = ["yams/**"]
"yams_py.yams" = ["**"]


[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
Expand Down
54 changes: 0 additions & 54 deletions setup.cfg

This file was deleted.

0 comments on commit 914e3c1

Please sign in to comment.