Skip to content

Commit 7a72e5c

Browse files
authored
Upgrade to v0.1.7
Cosmetic update
2 parents 6d26a3f + 9fb91fe commit 7a72e5c

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

fsLogger/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from __future__ import annotations
2-
__version__ = "0.1.6"
2+
__version__ = "0.1.7"
33
__doc__ = """
44
Logging utility v{}
55
Copyright (C) 2021 Fusion Solutions KFT <contact@fusionsolutions.io>

setup.py

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
#!/usr/bin/env python3
22
import os
3-
import fsLogger
43
try:
5-
from setuptools import setup
4+
from setuptools import setup # type: ignore
65
except ImportError:
76
from distutils.core import setup
87

98
pwd = os.path.abspath(os.path.dirname(__file__))
109

1110
setup(
12-
name = "python-fslogger",
13-
version = fsLogger.__version__,
14-
description = "Logging utility",
15-
keywords = "logging utility fusion solutions fusionsolutions",
16-
author = "Andor `iFA` Rajci - Fusions Solutions KFT",
17-
author_email = "ifa@fusionsolutions.io",
18-
url = "https://github.com/FusionSolutions/python-fslogger",
19-
license = "GPL-3",
20-
packages=["fsLogger"],
21-
long_description=open(os.path.join(pwd, "README.md")).read(),
22-
long_description_content_type="text/markdown",
23-
zip_safe=False,
24-
python_requires=">=3.7.0",
25-
test_suite="fsLogger.test",
26-
package_data={ "":["py.typed"] },
27-
classifiers=[ # https://pypi.org/pypi?%3Aaction=list_classifiers
11+
name = "python-fslogger",
12+
version = "0.1.7",
13+
description = "Logging utility",
14+
keywords = "logging utility fusion solutions fusionsolutions",
15+
author = "Andor `iFA` Rajci - Fusions Solutions KFT",
16+
author_email = "ifa@fusionsolutions.io",
17+
url = "https://github.com/FusionSolutions/python-fslogger",
18+
license = "GPL-3",
19+
packages = ["fsLogger"],
20+
long_description = open(os.path.join(pwd, "README.md")).read(),
21+
long_description_content_type = "text/markdown",
22+
zip_safe = False,
23+
python_requires = ">=3.7.0",
24+
test_suite = "fsLogger.test",
25+
package_data = { "":["py.typed"] },
26+
classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers
2827
"Development Status :: 4 - Beta",
2928
"Topic :: Utilities",
3029
"Programming Language :: Python :: 3 :: Only",

0 commit comments

Comments
 (0)