Skip to content

Commit

Permalink
use only pyproject.toml for build (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau authored Feb 4, 2023
1 parent 78f6baa commit fac4843
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 53 deletions.
56 changes: 52 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,58 @@
[build-system]
requires = [
"setuptools >= 40.9.0",
"wheel",
]
requires = ["setuptools >= 40.9.0","wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "sphinx-favicon"
version = "0.2"
description = "Sphinx Extension adding support for custom favicons"
keywords = ["sphinx", "extension", "favicon", "meta html"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
]
requires-python = ">=3.7"
dependencies = ["sphinx>=3.4"]

[[project.authors]]
name = "Timo Cornelius Metzger"
email = "[email protected]"

[project.license]
text = "MIT"

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.urls]
Homepage = "https://github.com/tcmetzger/sphinx-favicon"
Download = "https://github.com/tcmetzger/sphinx-favicon/archive/v${metadata:version}.tar.gz"

[project.optional-dependencies]
dev = ["pre-commit", "nox"]
test = ["pytest", "beautifulsoup4"]
doc = ["sphinx<6", "pydata-sphinx-theme", "sphinx-copybutton"]

[tool.setuptools]
license-files = ["LICENSE"]

[tool.ruff]
fix = true
select = ["E", "F", "W", "I", "D", "RUF"]
Expand Down
49 changes: 0 additions & 49 deletions setup.cfg

This file was deleted.

0 comments on commit fac4843

Please sign in to comment.