aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2019-08-23 01:26:37 -0600
committerTim Harder <radhermit@gmail.com>2019-08-23 02:59:14 -0600
commit9fbe16814b4e59ffc0175b27c3a6496fb229fbf6 (patch)
treee82497a0bad34d023e8728a26463621f1bdcfee1 /pyproject.toml
parenttravis-ci: verbosely run sdist to force sphinx to show errors (diff)
downloadpkgcheck-9fbe16814b4e59ffc0175b27c3a6496fb229fbf6.tar.gz
pkgcheck-9fbe16814b4e59ffc0175b27c3a6496fb229fbf6.tar.bz2
pkgcheck-9fbe16814b4e59ffc0175b27c3a6496fb229fbf6.zip
add pyproject.toml and update MANIFEST.in
Both pkgcore and snakeoil are needed to build the sdist, snakeoil for its distutils extensions and pkgcore because it's imported by the base module that is pulled in when generating the checks/keywords/reporters lists that used to be statically maintained.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 00000000..4c69cb19
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["wheel", "setuptools", "pkgcore~=0.10.0", "snakeoil~=0.8.1"]
+build-backend = "setuptools.build_meta"