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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
From dedd112f7607ad9f4edd3e2aba60d9cb2cb59b2e Mon Sep 17 00:00:00 2001
From: Malik Talha <talhamalik727x@gmail.com>
Date: Mon, 7 Aug 2023 00:19:14 +0500
Subject: [PATCH] structlog add setup file
add setup.py to replace hatchling build system as its not supported
---
setup.py | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 setup.py
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..4bc2b79
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,44 @@
+from setuptools import setup, find_packages
+
+setup(
+ name="structlog",
+ version="23.1.0",
+ dynamic=["readme", "version"],
+ description="Structured Logging for Python",
+ author="Hynek Schlawack",
+ author_email="hs@ox.cx",
+ url="https://github.com/hynek/structlog",
+ classifiers=[
+ "Development Status :: 5 - Production/Stable",
+ "License :: OSI Approved :: Apache Software License",
+ "License :: OSI Approved :: MIT License",
+ "Operating System :: OS Independent",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: Implementation :: CPython",
+ "Programming Language :: Python :: Implementation :: PyPy",
+ "Topic :: System :: Logging",
+ "Typing :: Typed",
+ ],
+ keywords=["logging", "structured", "structure", "log"],
+ license="MIT OR Apache-2.0",
+ python_requires=">=3.8",
+ install_requires=[
+ "wheel",
+ ],
+ project_urls={
+ "Documentation": "https://www.structlog.org/",
+ "Changelog": "https://www.structlog.org/en/stable/changelog.html",
+ "Bug Tracker": "https://github.com/hynek/structlog/issues",
+ "Source Code": "https://github.com/hynek/structlog",
+ "Funding": "https://github.com/sponsors/hynek",
+ "Tidelift": "https://tidelift.com/subscription/pkg/pypi-structlog?utm_source=pypi-structlog&utm_medium=pypi",
+ },
+ packages=find_packages(where="src", exclude=["tests", "debug"]),
+ package_dir={"": "src"},
+ include_package_data=True,
+ zip_safe=False,
+)
|