Skip to content

Commit a9b6ff8

Browse files
committed
Bump to version 0.1.0
1 parent d0a57f2 commit a9b6ff8

3 files changed

Lines changed: 23 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.1.0 (2018-12-07)
2+
==================
3+
4+
- Add logger
5+
- Add notifier
6+
- Add parser
7+
8+
19
0.0.1 (2017-09-04)
210
==================
311

loguru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ._notifier import Notifier as _Notifier
1212
from ._parser import Parser as _Parser
1313

14-
__version__ = "0.0.1"
14+
__version__ = "0.1.0"
1515

1616
logger = _Logger({}, None, False, False, False, False, 0)
1717
notifier = _Notifier()

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
setup(
1717
name="loguru",
1818
version=version,
19+
packages=["loguru"],
1920
description="Python logging made (stupidly) simple",
2021
long_description=readme,
2122
author="Delgan",
@@ -24,6 +25,18 @@
2425
download_url="https://github.com/Delgan/loguru/archive/{}.tar.gz".format(version),
2526
keywords=["loguru", "logging", "logger", "log", "parser", "notifier"],
2627
license="MIT license",
28+
classifiers=[
29+
"Development Status :: 5 - Production/Stable",
30+
"Intended Audience :: Developers",
31+
"Natural Language :: English",
32+
"License :: OSI Approved :: MIT License",
33+
"Operating System :: OS Independent",
34+
"Programming Language :: Python",
35+
"Programming Language :: Python :: 3",
36+
"Programming Language :: Python :: 3.6",
37+
"Programming Language :: Python :: 3.7",
38+
"Programming Language :: Python :: Implementation :: CPython",
39+
],
2740
install_requires=[
2841
"ansimarkup>=1.4.0",
2942
"better_exceptions_fork>=0.2.1.post6",
@@ -42,4 +55,5 @@
4255
"sphinx-rtd-theme>=0.3",
4356
]
4457
},
58+
python_requires=">=3.6",
4559
)

0 commit comments

Comments
 (0)