From 5a0ddd8860b924d4490f6c0f1639553efde67f18 Mon Sep 17 00:00:00 2001 From: moi15moi Date: Sun, 28 Jul 2024 20:10:33 -0400 Subject: [PATCH] Switch to pyproject.toml --- pyproject.toml | 54 +++++++++++++++++++++++++++++++++++ setup.py | 76 -------------------------------------------------- 2 files changed, 54 insertions(+), 76 deletions(-) create mode 100644 pyproject.toml delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..f7e65c37 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,54 @@ +[project] +name = "pyonfx" +description = "An easy way to create KFX (Karaoke Effects) and complex typesetting using the ASS format (Advanced Substation Alpha)." +authors = [ + { name = "Antonio Strippoli", email = "clarantonio98@gmail.com" }, +] +license = { text = "GNU LGPL 3.0 or later" } +readme = "README.md" +requires-python = ">=3.7" +dependencies = [ + "decord", + "pyquaternion", + "pywin32; platform_system=='Windows'", + "pycairo; platform_system=='Linux' or platform_system=='Darwin'", + "PyGObject; platform_system=='Linux' or platform_system=='Darwin'", +] +classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", +] +dynamic = ["version"] +keywords = ["typesetting", "ass", "subtitle", "aegisub", "karaoke", "kfx", "advanced-substation-alpha", "karaoke-effect"] + +[project.urls] +Documentation = "https://pyonfx.rtfd.io/" +Source = "https://github.com/CoffeeStraw/PyonFX/" +Tracker = "https://github.com/CoffeeStraw/PyonFX/issues/" + +[project.optional-dependencies] +dev = [ + "black", + "pytest", + "pytest-check", + "sphinx_panels", + "sphinx_rtd_theme", + "sphinxcontrib-napoleon", +] + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.dynamic] +version = { attr = "pyonfx.__init__.__version__" } + +[tool.setuptools.packages.find] +include = ["pyonfx*"] \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index c69b63b6..00000000 --- a/setup.py +++ /dev/null @@ -1,76 +0,0 @@ -import os -import re -import setuptools - -here = os.path.abspath(os.path.dirname(__file__)) - - -def read(*parts): - with open(os.path.join(here, *parts), "r") as fp: - return fp.read() - - -def find_version(*file_paths): - version_file = read(*file_paths) - version_match = re.search(r"^__version__ = [\'\"](.+)[\'\"]", version_file, re.M) - if version_match: - return version_match.group(1) - raise RuntimeError("Unable to find version string.") - - -def get_requirements(): - requirements = ["pyquaternion"] - - if os.environ.get("READTHEDOCS") != "True": - requirements.extend( - [ - 'pywin32; sys_platform == "win32"', - 'pycairo; sys_platform == "linux" or sys_platform == "darwin"', - 'PyGObject; sys_platform == "linux" or sys_platform == "darwin"', - ] - ) - - return requirements - - -setuptools.setup( - name="pyonfx", - url="https://github.com/CoffeeStraw/PyonFX/", - project_urls={ - "Documentation": "http://pyonfx.rtfd.io/", - "Source": "https://github.com/CoffeeStraw/PyonFX/", - "Tracker": "https://github.com/CoffeeStraw/PyonFX/issues/", - }, - author="Antonio Strippoli", - author_email="clarantonio98@gmail.com", - description="An easy way to create KFX (Karaoke Effects) and complex typesetting using the ASS format (Advanced Substation Alpha).", - long_description=open("README.md", encoding="utf-8").read(), - long_description_content_type="text/markdown", - version=find_version("pyonfx", "__init__.py"), - packages=["pyonfx"], - python_requires=">=3.7", - install_requires=get_requirements(), - extras_require={ - "dev": [ - "black", - "pytest", - "pytest-check", - "sphinx_panels", - "sphinx_rtd_theme", - "sphinxcontrib-napoleon", - ] - }, - keywords="typesetting ass subtitle aegisub karaoke kfx advanced-substation-alpha karaoke-effect", - classifiers=[ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", - ], - license="GNU LGPL 3.0 or later", -)