summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2018-08-04 07:11:33 +0200
committerMichele Simionato <michele.simionato@gmail.com>2018-08-04 07:11:33 +0200
commita40a84f46938fc7ff3dc4a449d862690efb690d2 (patch)
tree5a02d6cb7dddd6361d611fb348c7e97d56ea1b46 /setup.py
parenteb890d98739196b83f1ecb5cb7bcfe9739a9502c (diff)
downloadpython-decorator-git-a40a84f46938fc7ff3dc4a449d862690efb690d2.tar.gz
Support for Python 3.7
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
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'],