1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Sun, 21 Feb 2021 18:38:03 +0100
Description: Avoid usage of pyscaffold
Index: python-epimodels/setup.cfg
===================================================================
--- python-epimodels.orig/setup.cfg
+++ python-epimodels/setup.cfg
@@ -80,25 +80,10 @@ norecursedirs =
.tox
testpaths = tests
-[aliases]
-release = sdist bdist_wheel upload
-
-[bdist_wheel]
-# Use this option if your package is pure-python
-universal = 1
-
[build_sphinx]
source_dir = docs
build_dir = docs/_build
-[devpi:upload]
-# Options for the devpi: PyPI server and packaging tool
-# VCS export must be deactivated since we are using setuptools-scm
-no-vcs = 1
-formats =
- sdist
- bdist_wheel
-
[flake8]
# Some sane defaults for the code style checker flake8
exclude =
@@ -107,9 +92,3 @@ exclude =
dist
.eggs
docs/conf.py
-
-[pyscaffold]
-# PyScaffold's parameters when the project was created.
-# This will be used when updating. Do not change!
-version = 4.0
-package = epimodels
|