From a40a84f46938fc7ff3dc4a449d862690efb690d2 Mon Sep 17 00:00:00 2001 From: Michele Simionato Date: Sat, 4 Aug 2018 07:11:33 +0200 Subject: Support for Python 3.7 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 2f07200..5343a98 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup dic = dict(__file__=None) -exec(open('src/decorator.py').read(), dic) +exec(open('src/decorator.py').read(), dic) # extract the __version__ VERSION = dic['__version__'] @@ -33,6 +33,7 @@ if __name__ == '__main__': 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities'], -- cgit v1.2.1