We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b2bba1 commit 9f3adb4Copy full SHA for 9f3adb4
readchar/__init__.py
@@ -1,6 +1,4 @@
1
-from .readchar import readchar, readkey
2
from . import key
+from .readchar import readchar, readkey
3
4
__all__ = [readchar, readkey, key]
5
-
6
-__version__ = '2.0.1'
setup.py
@@ -6,7 +6,7 @@
from setuptools import find_packages, setup
7
from setuptools.command.test import test as TestCommand
8
9
-from readchar import __version__
+version = "2.0.1"
10
11
12
def read_description():
@@ -39,7 +39,7 @@ def run_tests(self):
39
40
setup(
41
name="readchar",
42
- version=__version__,
+ version=version,
43
description="Utilities to read single characters and key-strokes",
44
long_description=read_description(),
45
classifiers=[
0 commit comments