We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028031c commit 536a3d1Copy full SHA for 536a3d1
setup.py
@@ -1,8 +1,9 @@
1
+# encoding: utf-8
2
from setuptools import setup
3
-with open("README.rst", "r", encoding="utf-8") as f:
4
+with open("README.rst", "r") as f:
5
README = f.read()
-with open("CHANGES.rst", "r", encoding="utf-8") as f:
6
+with open("CHANGES.rst", "r") as f:
7
CHANGES = f.read()
8
9
testing_extras = [
@@ -15,7 +16,7 @@
15
16
17
setup(
18
name='alog',
- version='1.3.0-dev',
19
+ version='1.3.0-dev1',
20
description='Your goto Python logging without panic on context swtich',
21
long_description=README + CHANGES,
22
long_description_content_type="text/x-rst",
0 commit comments