xmi-logger 0.0.5__tar.gz → 0.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/PKG-INFO +1 -1
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/setup.py +16 -6
- xmi_logger-0.0.7/xmi_logger/__version__.py +10 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger/xmi_logger.py +1 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger.egg-info/PKG-INFO +1 -1
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger.egg-info/SOURCES.txt +1 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/README.md +0 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/setup.cfg +0 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger/__init__.py +0 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger/advanced_features.py +0 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger.egg-info/dependency_links.txt +0 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger.egg-info/requires.txt +0 -0
- {xmi_logger-0.0.5 → xmi_logger-0.0.7}/xmi_logger.egg-info/top_level.txt +0 -0
|
@@ -7,19 +7,29 @@
|
|
|
7
7
|
# Desc :
|
|
8
8
|
|
|
9
9
|
from setuptools import setup, find_packages
|
|
10
|
+
from codecs import open
|
|
11
|
+
import glob
|
|
12
|
+
import sys
|
|
13
|
+
import os
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
about = {}
|
|
17
|
+
here = os.path.abspath(os.path.dirname(__file__))
|
|
18
|
+
with open(os.path.join(here, "xmi_logger", "__version__.py"), "r", "utf-8") as f:
|
|
19
|
+
exec(f.read(), about)
|
|
10
20
|
|
|
11
21
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
12
22
|
long_description = fh.read()
|
|
13
23
|
|
|
14
24
|
setup(
|
|
15
|
-
name=
|
|
16
|
-
version=
|
|
17
|
-
author=
|
|
18
|
-
author_email=
|
|
19
|
-
description=
|
|
25
|
+
name=about["__title__"],
|
|
26
|
+
version=about["__version__"],
|
|
27
|
+
author=about["__author__"],
|
|
28
|
+
author_email=about["__author_email__"],
|
|
29
|
+
description=about["__description__"],
|
|
20
30
|
long_description=long_description,
|
|
21
31
|
long_description_content_type="text/markdown",
|
|
22
|
-
url=
|
|
32
|
+
url=about["__url__"],
|
|
23
33
|
packages=find_packages(),
|
|
24
34
|
include_package_data=True,
|
|
25
35
|
python_requires='>=3.6',
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Xmi_logger
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
__title__ = "xmi_logger"
|
|
5
|
+
__description__ = "An enhanced logger based on Loguru"
|
|
6
|
+
__version__ = "0.0.7"
|
|
7
|
+
__author__ = "gm.zhibo.wang"
|
|
8
|
+
__author_email__ = "gm.zhibo.wang@gmail.com"
|
|
9
|
+
__url__ = "https://github.com/wang-zhibo/xmi_logger"
|
|
10
|
+
__license__ = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|