xmi-logger 0.0.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xmi_logger
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: An enhanced logger based on Loguru
5
5
  Home-page: https://github.com/wang-zhibo/xmi_logger
6
6
  Author: gm.zhibo.wang
@@ -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='xmi_logger',
16
- version='0.0.6',
17
- author='gm.zhibo.wang',
18
- author_email='gm.zhibo.wang@gmail.com',
19
- description='An enhanced logger based on Loguru',
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='https://github.com/wang-zhibo/xmi_logger',
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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xmi_logger
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: An enhanced logger based on Loguru
5
5
  Home-page: https://github.com/wang-zhibo/xmi_logger
6
6
  Author: gm.zhibo.wang
@@ -1,6 +1,7 @@
1
1
  README.md
2
2
  setup.py
3
3
  xmi_logger/__init__.py
4
+ xmi_logger/__version__.py
4
5
  xmi_logger/advanced_features.py
5
6
  xmi_logger/xmi_logger.py
6
7
  xmi_logger.egg-info/PKG-INFO
File without changes
File without changes