We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4a3aa0 commit 803d0aeCopy full SHA for 803d0ae
setup.py
@@ -18,10 +18,11 @@ def read(*names, **kwargs):
18
19
Parameter: encoding kwarg may be set
20
"""
21
- return open(
+ with open(
22
join(dirname(__file__), *names),
23
encoding=kwargs.get('encoding', 'utf8')
24
- ).read()
+ ) as f:
25
+ return f.read()
26
27
28
classifiers = """\
@@ -34,6 +35,7 @@ def read(*names, **kwargs):
34
35
Programming Language :: Python :: 3.10
36
Programming Language :: Python :: 3.11
37
Programming Language :: Python :: 3.12
38
+Programming Language :: Python :: 3.13
39
Programming Language :: Python :: Implementation :: CPython
40
Programming Language :: Python :: Implementation :: PyPy
41
Topic :: Software Development :: Quality Assurance
0 commit comments