python-apipkg/0002-add-setup.cfg.patch
2022-10-28 11:02:50 +08:00

74 lines
1.8 KiB
Diff

From 428c1d0662705151f09a85d6b08200ea86df98c2 Mon Sep 17 00:00:00 2001
From: liqiuyu123 <liqiuyu@kylinos.cn>
Date: Fri, 28 Oct 2022 10:56:05 +0800
Subject: [PATCH] add-setup.cfg
---
setup.cfg | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
create mode 100644 setup.cfg
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..d3697c4
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,54 @@
+[metadata]
+name = apipkg
+description = apipkg: namespace control and lazy-import mechanism
+long_description = file: README.rst
+long_description_content_type = text/x-rst
+url = https://github.com/pytest-dev/apipkg
+author = holger krekel
+maintainer = Ronny Pfannschmidt
+maintainer_email = opensource@ronnypfannschmidt.de
+license = MIT
+license_file = LICENSE
+platforms =
+ unix
+ linux
+ osx
+ cygwin
+ win32
+classifiers =
+ Development Status :: 4 - Beta
+ Intended Audience :: Developers
+ License :: OSI Approved :: MIT License
+ Operating System :: MacOS :: MacOS X
+ Operating System :: Microsoft :: Windows
+ Operating System :: POSIX
+ Programming Language :: Python
+ Programming Language :: Python :: 2
+ Programming Language :: Python :: 2.7
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.5
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Programming Language :: Python :: Implementation :: CPython
+ Topic :: Software Development :: Libraries
+
+[options]
+packages = find:
+python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
+package_dir = =src
+setup_requires =
+ setuptools>=30.3.0
+ setuptools_scm
+
+[options.packages.find]
+where = src
+
+[wheel]
+universal = true
+
+[egg_info]
+tag_build =
+tag_date = 0
+
--
2.37.1.windows.1