File: add-missing-setup.py.patch

package info (click to toggle)
python-autopage 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 216 kB
  • sloc: python: 1,795; makefile: 10
file content (20 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Add missing setup.py
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2021-08-25

Index: python-autopage/setup.py
===================================================================
--- /dev/null
+++ python-autopage/setup.py
@@ -0,0 +1,10 @@
+"""Setup.py entry point for package.
+
+Configuration is handled by setuptools>30.3.0 through setup.cfg.
+https://setuptools.readthedocs.io/en/latest/setuptools.html#metadata
+https://setuptools.readthedocs.io/en/latest/setuptools.html#options
+"""
+
+from setuptools import setup
+
+setup()