Skip to content

Commit 7db8347

Browse files
committed
Move to pyproject.toml.
1 parent 076ed8b commit 7db8347

File tree

4 files changed

+35
-33
lines changed

4 files changed

+35
-33
lines changed

.coveragerc

Lines changed: 0 additions & 3 deletions
This file was deleted.

lib/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

pyproject.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[build-system]
2+
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pypi2pkgbuild"
7+
description = "A PyPI to PKGBUILD converter."
8+
readme = "README.rst"
9+
authors = [{name = "Antony Lee"}]
10+
urls = {Repository = "https://github.com/anntzer/pypi2pkgbuild"}
11+
license = {text = "MIT"}
12+
classifiers = [
13+
"Development Status :: 4 - Beta",
14+
"Environment :: Console",
15+
"Intended Audience :: System Administrators",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: POSIX :: Linux",
18+
"Programming Language :: Python :: 3",
19+
"Topic :: System :: Software Distribution",
20+
]
21+
requires-python = ">=3.8"
22+
dynamic = ["version"]
23+
24+
[tool.setuptools]
25+
packages = []
26+
script-files = ["pypi2pkgbuild.py"]
27+
28+
[tool.setuptools_scm]
29+
version_scheme = "post-release"
30+
local_scheme = "node-and-date"
31+
fallback_version = "0+unknown"
32+
33+
[tool.coverage.run]
34+
branch = true
35+
include = ["pypi2pkgbuild.py"]

setup.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)