summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-05-15 14:10:49 -0400
committerNed Batchelder <ned@nedbatchelder.com>2023-05-15 14:10:49 -0400
commit48126d4b5f78fea6ce58c211805231f57a7894a2 (patch)
treeca769faa30e78482dac42225de8efbddae969b51
parentca1b487faedb41da37dd25f602d4c76c25bbe375 (diff)
downloadpython-coveragepy-git-48126d4b5f78fea6ce58c211805231f57a7894a2.tar.gz
build: no need for setup.cfgHEADmaster
It's a little unfortunate that we're moving a seting INTO setup.py, but at least it lets us get rid of one metadata file.
-rw-r--r--setup.cfg5
-rw-r--r--setup.py1
2 files changed, 1 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index db3fdce8..00000000
--- a/setup.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
-# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
-
-[metadata]
-license_files = LICENSE.txt
diff --git a/setup.py b/setup.py
index 2c375522..90763f94 100644
--- a/setup.py
+++ b/setup.py
@@ -118,6 +118,7 @@ setup_args = dict(
long_description_content_type='text/x-rst',
keywords='code coverage testing',
license='Apache-2.0',
+ license_files=["LICENSE.txt"],
classifiers=classifier_list,
url="https://github.com/nedbat/coveragepy",
project_urls={